install-nix-action/node_modules/pn/_promise.js
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +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;
};