JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2261859
  • Score
    100M100P100Q201858F
  • License BSD

Return a debounced version of the given function

Package Exports

  • debounce-fn

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (debounce-fn) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

debounce-fn

Return a debounced version of the given function

Install

$ npm install debounce-fn

Usage

var debounce = require('debounce-fn')
var yo = debounce(printYo, 250) // debounce for 250ms

yo()
yo()
yo()
setTimeout(yo, 300)

// first two calls will be debounced, and will give two outputs:
// "yo"
// "yo"

function printYo () {
  console.log('yo')
}