forked from enviPath/enviPy
Current Dev State
This commit is contained in:
25
static/js/ketcher2/node_modules/liftoff/lib/register_loader.js
generated
vendored
Normal file
25
static/js/ketcher2/node_modules/liftoff/lib/register_loader.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
const rechoir = require('rechoir');
|
||||
const isString = require('lodash.isstring');
|
||||
|
||||
module.exports = function(eventEmitter, extensions, configPath, cwd) {
|
||||
extensions = extensions || {};
|
||||
|
||||
if (!isString(configPath)) {
|
||||
return;
|
||||
}
|
||||
|
||||
var autoloads = rechoir.prepare(extensions, configPath, cwd, true);
|
||||
if (autoloads instanceof Error) {
|
||||
autoloads = autoloads.failures;
|
||||
}
|
||||
|
||||
if (Array.isArray(autoloads)) {
|
||||
autoloads.forEach(function (attempt) {
|
||||
if (attempt.error) {
|
||||
eventEmitter.emit('requireFail', attempt.moduleName, attempt.error);
|
||||
} else {
|
||||
eventEmitter.emit('require', attempt.moduleName, attempt.module);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user