Files
julia-runtest/node_modules/pn/_promise.js
David Anthoff c0c6ce37ca Add node deps
2019-09-14 21:05:22 -07: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;
};