1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/node_modules/pinkie-promise
MatteZ02 5eb0264906 fix
2019-05-30 12:06:47 +03:00
..
index.js fix 2019-05-30 12:06:47 +03:00
license fix 2019-05-30 12:06:47 +03:00
package.json fix 2019-05-30 12:06:47 +03:00
readme.md fix 2019-05-30 12:06:47 +03: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