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

fast-defer

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-defer

Fast and minimal deferred implementation for javascript.

  • 1.1.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
122K
increased by7.2%
Maintainers
1
Weekly downloads
 
Created
Source

Issues Stars License Codecov FOSSA Status Join the chat at https://gitter.im/tinylibs-js-org/community Speed Blazing

Latest Version Downloads JsDelivr Bundlephobia Packagephobia


  

🏃
Fast Defer


Fast Defer is a fast and minimal deferred implementation for javascript.


Table of Contents


Installing

Node

npm install --save fast-defer
# or
yarn add fast-defer
const { deferred } = require('fast-defer');
import { deferred } from 'fast-defer';

Browser

<script
  crossorigin
  src="https://cdn.jsdelivr.net/npm/fast-defer@latest/dist/index.js"
></script>
const { deferred } = window.fastDefer;

Url Import

import { deferred } from 'https://cdn.skypack.dev/fast-defer@latest';

Getting Started

A deferred is nothing more than a promise with .resolve() and a .reject() method. You can use it to create a promise that will be resolved or rejected at some point in the future and, probably, in another scope.

import { deferred, isDeferred } from 'fast-defer';

const waitingSomething = deferred();

waitingSomething.then((val) => {
  console.log('Resolved');
});

waitingSomething.catch((error) => {
  console.log('Rejected');
});

// Other file, function or etc
someCallback((response, error) => {
  if (error) {
    waitingSomething.reject(error);
  } else {
    waitingSomething.resolve(response);
  }
});

Browser Compatibility

ChromeEdgeFirefoxInternet ExplorerOperaSafariNode.jsDenoWebView AndroidChrome AndroidFirefox for AndroidOpera AndroidSafari on iOSSamsung Internet
Promise() constructor321229*X1980.121.04.4.33229*198*2.0
Symbol() constructor381236X2590.121.03838362593.0

License

Licensed under the MIT. See LICENSE for more informations.

FOSSA Status


FAQs

Package last updated on 28 Feb 2022

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