-
-
Save yoannmoinet/72b7e3832fdb1cdd29eb to your computer and use it in GitHub Desktop.
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