JSPM

mabiki

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 499
  • Score
    100M100P100Q95288F
  • License MIT

Provides throttle and debounce

Package Exports

  • mabiki

Readme

mabiki

mabiki provides throttle and debounce, which are compatible with lodash.

Install

$ npm install mabiki

Usage

import { debounce, throttle } from "mabiki";

window.addEventListener("scroll", debounce(() => {
  // do something
}, 200));

window.addEventListener("scroll", throttle(() => {
  // do something
}, 200));