333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# pinkie-promise [![Build Status](https://travis-ci.org/floatdrop/pinkie-promise.svg?branch=master)](https://travis-ci.org/floatdrop/pinkie-promise)
 
> [ES2015 Promise](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects) ponyfill
 
Module exports global Promise object (if available) or [`pinkie`](http://github.com/floatdrop/pinkie) Promise polyfill.
 
## Install
 
```
$ npm install --save pinkie-promise
```
 
## Usage
 
```js
var Promise = require('pinkie-promise');
 
new Promise(function (resolve) { resolve('unicorns'); });
//=> Promise { 'unicorns' }
```
 
## Related
 
- [pify](https://github.com/sindresorhus/pify) - Promisify a callback-style function
 
## License
 
MIT © [Vsevolod Strukchinsky](http://github.com/floatdrop)