install-nix-action/node_modules/pn/_promise.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00

6 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;
};