Promise.js
v1.0.1
Published
promise similar es6 promise as the same api
Readme
Promise
promise similar es6 promise as the same api.
Installation
npm install cast-promise --saveUsage
npm install cast-promise --save
<script src="path/cast-promise.js"></script>var promise = new Promise();
promise.then(function(){
console.log('resolved');
},function(){
console.log('rejected');
});