jfactory-promise
Version:
Promise where the whole tree can be awaited, canceled and expired. Provides synchronous status, explorable chain map, shared data, debug data and trace.
13 lines (11 loc) • 381 B
JavaScript
/*!
* JFactoryPromise v1.7.7
* http://github.com/jfactory-es/jfactory-promise
* (c) 2019-2021, Stéphane Plazis, http://github.com/jfactory-es/jfactory-promise/blob/master/LICENSE.txt
*/
;
if (process.env.NODE_ENV === "development") {
module.exports = require("./JFactoryPromise-devel.umd.js");
} else {
module.exports = require("./JFactoryPromise.umd.js");
}