Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chatd / usr / share / chatd / resources / app / node_modules / sharp / install / can-compile.js
Size: Mime:
// 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;
}