You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
388 B
20 lines
388 B
/*! |
|
* 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()); |
|
};
|
|
|