requirejs-dplugins/Promise
requirejs-dplugins/Promise
provides an ES6 Promise implementation. If the browser does not provide it, the
plugin will load the lie implementation.
Sample
require(["requirejs-dplugins/Promise!"], function(Promise){
var promise = new Promise(function (resolve, reject) {
...
});
});