LookAtMySuitBot/js/node_modules/pinkie-promise
Brett 5f2b208d42 c++ setup 2023-12-24 20:08:39 -05:00
..
index.js c++ setup 2023-12-24 20:08:39 -05:00
license c++ setup 2023-12-24 20:08:39 -05:00
package.json c++ setup 2023-12-24 20:08:39 -05:00
readme.md c++ setup 2023-12-24 20:08:39 -05:00

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

License

MIT © Vsevolod Strukchinsky