ez-indexation / app / node_modules / pinkie-promise /
@kieffer kieffer authored on 7 Mar 2017
..
index.js v0.0.0 7 years ago
license v0.0.0 7 years ago
package.json v0.0.0 7 years ago
readme.md v0.0.0 7 years ago
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