1.3.0 • Published 9 years ago

es6-deferred v1.3.0

Weekly downloads
727
License
MIT
Repository
-
Last release
9 years ago

Usage

var Deferred = require('es6-deferred');
var d = new Deferred();

d.promise

The promise.

d.resolve(value)

Resolves the promise with the given value.

d.reject(error)

Rejects the promise with the given error.

d.then(onFulfilled, onRejected)

Appends a fulfillment and rejection handler to the promise.

d.catch(onRejected)

Appends a rejection handler to the promise.

License

MIT