Socket
Socket
Sign inDemoInstall

actions-debouncer

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    actions-debouncer

Debounce actions to ensure it will be processed only once.


Version published
Weekly downloads
1
Maintainers
1
Install size
4.82 kB
Created
Weekly downloads
 

Readme

Source

Actions debouncer

This package attempts to debounce actions to ensure that only one will be excecuted in a defined timeout

Intallation

npm i actions-debouncer

Usage

const Debouncer = require('actions-debouncer')

const debouncer = new Debouncer( (value) => console.log(value) )

debouncer.do(1)
debouncer.do(2)
debouncer.do(3)

// Output: 3

Counstructor:

  • action: Closure. Receives the parameter sent to the do method
  • options: Object:
    • timeout: time in milisencods which it will debounce actions. Default 300ms.

Keywords

FAQs

Last updated on 22 Dec 2016

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