Gogs df670eaa27 first commit 3 周之前
..
index.js df670eaa27 first commit 3 周之前
license df670eaa27 first commit 3 周之前
package.json df670eaa27 first commit 3 周之前
readme.md df670eaa27 first commit 3 周之前

readme.md

pinkie-promise Build Status

ES2015 Promise ponyfill

Module exports global Promise object (if available) or pinkie Promise polyfill.

Install

$ npm install --save pinkie-promise

Usage

var Promise = require('pinkie-promise');

new Promise(function (resolve) { resolve('unicorns'); });
//=> Promise { 'unicorns' }

Related

  • pify - Promisify a callback-style function

License

MIT © Vsevolod Strukchinsky