Last active
April 1, 2021 13:54
-
-
Save amoilanen/7a5e32166f9287a644f4 to your computer and use it in GitHub Desktop.
Enhances 'require' from RequireJS with Promises API while preserving its original semantics. Now 'require' calls can be chained.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Enhances 'require' from RequireJS with Promises API while preserving its original semantics. | |
*/ | |
(function() { | |
if (!Promise || !require) { | |
return; | |
} | |
var originalRequire = require; | |
function toArray(elems) { | |
return [].slice.call(elems); | |
} | |
req = require = function(deps, callback, errback, optional) { | |
return new Promise(function(resolve, reject) { | |
originalRequire(deps, | |
function() { | |
callback && callback.apply(null, toArray(arguments)); | |
resolve(toArray(arguments)); | |
}, | |
function() { | |
errback && errback.apply(null, toArray(arguments)); | |
reject(toArray(arguments)); | |
}, | |
optional | |
); | |
}); | |
}; | |
require.config = function() { | |
originalRequire.config.apply(originalRequire, toArray(arguments)); | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment