Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

promise-race

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promise-race

An ES6 class to manage Promise race conditions. Will resolve to the first resolved Promise

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

PromiseRace

An ES6 class to help with Promise races. This is useful when you want to ignore redundant promises that are overriden by a promise called afterwards

Install

$ npm install -S promise-race

Usage

import PromiseRace from 'promise-race'

const race = new PromiseRace()

const p1 = new Promise(resolve => setTimeout(resolve(1), 250))
const p2 = new Promise(resolve => setTimeout(resolve(2), 500))

let foo

// `p1` promise WON'T resolve as `p2` was appended later
race.append(p1).then(() => { foo = 1 })

// this promise WILL resolve as it was appended after `p1`
race.append(p2).then(() => { foo = 2 })

console.log(foo) // 2

// This will return a promise that resolves with the last appended promise
promise.resolved()
  .then(() => {
    // ...
  })

FAQs

Package last updated on 07 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc