New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@reverse/debounce

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reverse/debounce

Debounce, Throttle, and Queue Execution Factories.

latest
npmnpm
Version
1.0.5
Version published
Maintainers
2
Created
Source

@reverse/debounce

Debounce, Throttle, and Queue Execution Factories

You can install with nodejs and npm

npm i @reverse/emitter

Table of Contents**

  • debounce
  • throttle
  • queueExec

debounce

import { debounce } from '@reverse/debounce';

function thing() {
  console.log('Thing was ran!');
}

const debouncedThing = debounce(thing, 500);

throttle

import { throttle } from '@reverse/debounce';

function thing() {
  console.log('Thing was ran!');
}

const throttledThing = throttle(thing, 500);

queueExec

import { queueExec } from '@reverse/debounce';

function thing() {
  console.log('Thing was ran!');
}

const queuedThing = queueExec(thing, 500);

FAQs

Package last updated on 27 Dec 2019

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