login/node_modules/pn/_promise.js
Balaga Gayatri 74dd83c7c8 node_modules
2021-10-22 12:50:18 +05:30

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