JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5374000
  • Score
    100M100P100Q239134F
  • License MIT

Delay a promise a specified amount of time

Package Exports

  • delay

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (delay) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

delay Build Status

Delay a promise a specified amount of time

Install

$ npm install --save delay

Usage

const delay = require('delay');

delay(200)
    .then(() => {
        // executed after 200 milliseconds
    });

somePromise()
    .then(delay(100))
    .then(result => {
        // executed 100 milliseconds after somePromise resolves
        // the result from somePromise is passed through
    });

// and with Babel and async functions
async () => {
    bar();

    await delay(100);

    // executed 100 milliseconds later
    baz();
}();

// there's also delay.reject() that takes the value, and rejects it `ms` later
Promise.resolve('foo')
    .then(delay.reject(100))
    .then(x => blah()) // never executed
    .catch(err => {
        // executed 100 milliseconds later
        // err === 'foo'
    });

// you can also specify the rejection value
Promise.resolve('foo')
    .then(delay.reject(100, 'bar'))
    .then(x => blah()) // never executed
    .catch(err => {
        // executed 100 milliseconds later
        // err === 'bar'
    });
  • immediate-promise - Returns a promise resolved in the next event loop - think setImmediate()

License

MIT © Sindre Sorhus