選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_promise.js 208 B

123456
  1. // Allow the user to customize the Promise type returned by this library.
  2. var mypromise = global.Promise;
  3. module.exports = function getOrSetPromise(p) {
  4. if (p) { mypromise = p; }
  5. return mypromise;
  6. };