discord-baymax-bot/node_modules/pinkie-promise
2017-03-23 23:52:08 -05:00
..
index.js Pushing changes 2017-03-23 23:52:08 -05:00
license Pushing changes 2017-03-23 23:52:08 -05:00
package.json Pushing changes 2017-03-23 23:52:08 -05:00
readme.md Pushing changes 2017-03-23 23:52:08 -05:00

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' }
  • pify - Promisify a callback-style function

License

MIT © Vsevolod Strukchinsky