Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

fast-defer

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-defer

A fast and minimal deferred implementation for javascript

latest
Source
npmnpm
Version
1.1.9
Version published
Weekly downloads
176K
7.41%
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 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.umd.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 15 Sep 2025

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