1.0.0 • Published 10 years ago
a-promise v1.0.0
A Promise
An extremely lightweight Promise Polyfill for Node and Browsers. It doesn't support all the features yet, but It supports what a normal person needs to keep the code clean. If you need something added, just open an issue.
Installation
npm install a-promise
Example
In case you don't know what Promises are, then this example should give you a basic intro.
function MyFunction(Num){
return new Promise(function(Resolve, Reject){
// Do something asyncly
Resolve(Num * 100);
});
}
MyFunction(5).then(function(Result){
console.log(Result); // Outputs 500
});
1.0.0
10 years ago
0.2.1
10 years ago
0.2.0
10 years ago
0.1.2
10 years ago
0.1.1
10 years ago
0.1.0
10 years ago
0.0.13
10 years ago
0.0.12
10 years ago
0.0.11
10 years ago
0.0.10
10 years ago
0.0.9
10 years ago
0.0.8
10 years ago
0.0.7
10 years ago
0.0.6
10 years ago
0.0.5
10 years ago
0.0.4
10 years ago
0.0.3
10 years ago
0.0.2
10 years ago
0.0.1
10 years ago