UNPKG

292 BJavaScriptView Raw
1// Copyright 2013 Lovell Fuller and others.
2// SPDX-License-Identifier: Apache-2.0
3
4'use strict';
5
6const libvips = require('../lib/libvips');
7
8try {
9 if (!(libvips.useGlobalLibvips() || libvips.hasVendoredLibvips())) {
10 process.exitCode = 1;
11 }
12} catch (err) {
13 process.exitCode = 1;
14}