Files
setup-kustomize/node_modules/pn/_promise.js
Imran Ismail 99f65d1591 Bootstrap
2019-09-05 03:53:25 +08:00

7 lines
208 B
JavaScript

// Allow the user to customize the Promise type returned by this library.
var mypromise = global.Promise;
module.exports = function getOrSetPromise(p) {
if (p) { mypromise = p; }
return mypromise;
};