UNPKG

concurrent

Version:

Promises/A+ with Scala awesomeness

12 lines (11 loc) 200 B
/** * Promises states according to the A+ Specification * * @readOnly * @enum {Number} */ var State = module.exports = { PENDING: "pending", FULFILLED: "fulfilled", REJECTED: "rejected" };