Coder Social home page Coder Social logo

promise-with-status's Introduction

promise-with-status npm Travis SUSHI-WARE LICENSE

A promise exports status and value (or reason).

Install

$ npm i -S promise-with-status

Usage

const withStatus = require('promise-with-status')(Promise)
// or: const withStatus = require('promise-with-status')(require('your-favorite-promise-lib'))

const promise = withStatus(Promise.resolve(123))
console.log(promise.status) //=> Symbol(pending)

promise.then(() => console.log(promise.status)) //=> Symbol(fullfilled)
promise.then(() => console.log(promise.value))  //=> 123

const error = withStatus(Promise.reject(new Error('wow')))

error.then(() => console.log(promise.status)) //=> Symbol(rejected)
error.then(() => console.log(promise.reason)) //=> Error: wow

API

require('with-promise-status')(Promise)

Returns withStatus(promise) function.

Promise

Type: Function

Your favorite Promise implementation

withStatus(promise)

Returns new promise having status and other properties.

promise

Type: Promise

A promise, howver it will be not modified.

promise.status

withStatus.pending, withStatus.fullfilled or withStatus.rejected

promise.value

If promise.status === withStatus.fullfilled is true, it is promise's fullfilled value.

promise.reason

If promise.status === withStatus.rejected is true, it is promise's rejected reason.

withStatus.pending, withStatus.fullfilled, withStatus.rejected

Exported symbols which means each statuses.

License

MIT and ๐Ÿฃ ยฉ TSUYUSATO "MakeNowJust" Kitsune <[email protected]> 2016

promise-with-status's People

Contributors

makenowjust avatar

Watchers

James Cloos avatar  avatar  avatar

promise-with-status's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.