Sha256: 88e7d8621b5e5dc15b7a94de674dfaf86666fafed88dfc69b3f20f6225b15c95
Contents?: true
Size: 388 Bytes
Versions: 34
Compression:
Stored size: 388 Bytes
Contents
/*! * node-sass: lib/binding.js */ var errors = require('./errors'); /** * Require binding */ module.exports = function(ext) { if (!ext.hasBinary(ext.getBinaryPath())) { if (!ext.isSupportedEnvironment()) { throw new Error(errors.unsupportedEnvironment()); } else { throw new Error(errors.missingBinary()); } } return require(ext.getBinaryPath()); };
Version data entries
34 entries across 32 versions & 13 rubygems