jack e1a2621c78 update il y a 2 ans
..
index.js e1a2621c78 update il y a 2 ans
license e1a2621c78 update il y a 2 ans
package.json e1a2621c78 update il y a 2 ans
readme.md e1a2621c78 update il y a 2 ans

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