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