Socket
Socket
Sign inDemoInstall

trivial-deferred

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    trivial-deferred

The most dead-simple trivial Deferred implementation


Version published
Maintainers
1
Install size
10.0 kB
Created

Readme

Source

trivial-deferred

A very dead-simple trivial Deferred implementation

USAGE

// hybrid module, either esm or cjs styles work
import Deferred from 'trivial-deferred'
// or
const Deferred = require('trivial-deferred')
// or even
import Deferred from 'https://unpkg.com/trivial-deferred/dist/mjs/index.js'

// or if you like this way better, this works, too:
import { Deferred } from 'trivial-deferred'
const { Deferred } = require('trivial-deferred')
import { Deferred } from 'https://unpkg.com/trivial-deferred/dist/mjs/index.js'

// type defaults to `unknown`, just like Promise<T>
// set to <void> to make TypeScript ok with calling d.resolve()
// with no argument.
const d = new Deferred<string>()
// promise is d.promise
// to make the promise reject, do d.reject(error)
// to make the promise resolve, do d.resolve(value)
d.resolve('a string')
assert.equal(await d.promise, 'a string')

That's about it!

Keywords

FAQs

Last updated on 22 Mar 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc