setup-node/node_modules/pn/_promise.js
Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04: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;
};