Socket
Socket
Sign inDemoInstall

@bitty/deferred

Package Overview
Dependencies
0
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bitty/deferred

It provides a function to create Deferred objects. They contains a Promise and methods to imperatively resolve or reject it.


Version published
Weekly downloads
5
increased by150%
Maintainers
2
Install size
19.8 kB
Created
Weekly downloads
 

Readme

Source

@bitty/deferred

Bundle minified size Bundle minified and gzipped size

It provides a function to create Deferred objects. They contain a Promise and methods to imperatively resolve or reject it.

  • 📦 Distributions in ESM, CommonJS, UMD and UMD minified formats.

  • ⚡ Lightweight:

    • Weighs less than 1KB (min + gzip).
    • Tree-shakeable.
    • Side-effects free.
  • 🔋 Bateries included:

    • No dependencies.
    • Only requires Promise, but you can use a polyfill in unsupported environments.
    • Isn't based in other es2015+ features or APIs.
  • 🏷 Safe:

    • JSDocs and type declarations for IDEs and editor's autocomplete/intellisense.
    • Made with TypeScript as strict as possible.
    • Unit tests with AVA.

Installation

This library is published in the NPM registry and can be installed using any compatible package manager.

npm install @bitty/deferred --save

# For Yarn, use the command below.
yarn add @bitty/deferred

Installation from CDN

This module has a UMD bundle available through JSDelivr and Unpkg CDNs.

<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/@bitty/deferred"></script>

<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/@bitty/deferred"></script>

<script>
  // UMD module defines "createDeferred" in global/window scope.
  console.log(createDeferred);
  //=> "[Function: createDeferred]"

  let deferred = createDeferred();

  deferred.promise.then(() => {
    console.log('It was okay.');
  });

  deferred.resolve();
</script>

Getting Stated

This module default exports createDeferred, which is a factory function that creates Deferred objects.

import createDeferred from '@bitty/deferred';

const deferred = createDeferred<boolean>();

Deferred objects exposes a Promise and methods to reject or resolve it.

import createDeferred, { Deferred } from '@bitty/deferred';

let deferred: Deferred<number>;

// ...

deferred.promise
  .then(value => console.log(`You received $ ${value.toFixed(2)}!`))
  .catch(reason => console.error(`Couldn't receive because of `, reason));

deferred.resolve(10);
//=> It logs "You received $ 50.00!" in the console.

deferred.reject(new Error('The account number is invalid.'));
//=> Won't log anything because promise is already resolved.

We also export the Deferred interface. Which simply defines the promise property (an instance of Promise) and the methods that change it.

interface Deferred<T> {
  readonly promise: Promise<T>;
  reject(reason: unknown): void;
  resolve(value: T | PromiseLike<T>): void;
}

License

Released under MIT License.

Keywords

FAQs

Last updated on 09 Jan 2022

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