Socket
Socket
Sign inDemoInstall

kontroll

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    kontroll

kontroll ("control") is a tiny, dead-simple package for function behavior controls like debounce, countdown, throttle (limit).


Version published
Weekly downloads
39
increased by21.88%
Maintainers
1
Install size
14.8 kB
Created
Weekly downloads
 

Changelog

Source

v1.0.0

compare changes

🏡 Chore

  • package.json: Add keywords (6068e00)
  • lint-staged: Changed to eslint without --fix (9017c9c)
  • Update deps (7604ec2)
  • Update deps (a230ca5)

❤️ Contributors

Readme

Source

kontroll TypeScript

npm version npm downloads Codecov License Bundlejs

kontroll ("control") is a tiny, dead-simple package for function behavior controls like debounce, countdown, throttle (limit).

Features

  • 100% coverage!
  • Self-explained: for real, every functions and options have TSDoc comments to explain their behavior plus examples at a hover (based on your IDE), apart from the already intuitive logic path.
    • jsDocs.io
  • Clearable: you can stop pending timers by calling the returned clearer function or use the clear(key) function.
  • Promise aware: avoid duplicated call if your promise haven't settled.

Usage

Install package:

# npm
npm install kontroll

# yarn
yarn add kontroll

# pnpm (recommended)
pnpm install kontroll

Import:

// This package exports ESM only.
import {
  clear,
  countdown, // Can be understand as throttle no leading (execute at end of throttle instead of lead)
  debounce,
  throttle,
} from 'kontroll'

const doSum = (...numbers) => console.log(numbers.reduce((acc, cur) => acc + cur, 0))
const makeDoSum = (...numbers) => () => doSum(numbers)

const clearCountdown = countdown(1000, makeDoSum(1, 2), { key: 'defined', replace: false })
const clearDebounce = debounce(1000, makeDoSum(3, 4), { key: 34, leading: false })
const resetThrottle = throttle(1000, makeDoSum(5, 6), { trailing: false })

Notice

key behavior

Kontroll follows a key-first strategy, as long as things share the same key, they share the same timer.

If a options.key is not present, key are taken as callback.toString().

If you call something like:

// * Case 1, (arrow) function with unchanged/variable-only body
debounce(1000, () => console.log(variable))

// * Case 2, declared function
debounce(1000, makeDoSum(1, 2))
// For declared function, input could be changed.
debounce(1000, makeDoSum(2, 3))

multiple times,
The callback are properly debounced, because they have the same callback body.

But be noticed, for something like:

debounce(1000, () => console.log('hi'))
debounce(1000, () => console.log('hello'))

The automated key are different for the two calls (because they have different callback body), so they are timed separately.
In you wish them to have the same timer, you can manually set options.key like: debounce(1000, () => {}, { key: 'KEY' })

License

MIT License © 2023 NamesMT

Keywords

FAQs

Last updated on 21 Jan 2024

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