Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 654 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 654 Bytes

Build Status

Hi-Promise

JavaScript Promise implementation, just a re-invented wheel without performance optimization. Super thanks to promises-aplus-tests project for all test cases.

Usage

Just use it like any other Promise libraries.

npm install hi-promise --save

var Promise = require('hi-promise');
var p = new Promise(function(resolve, reject) {});

Test

npm install

And then,

npm run test