Skip to content

kingzez/petit-kit

Repository files navigation

petit-kit

A tiny tool kit library. [keep adding]

Installation

npm install petit-kit -S
# or with yarn
yarn add petit-kit

Usage

Just import what you need and use it.

debounce

import { debounce } from 'petit-kit'

window.addEventListener(
  'resize',
  debounce(() => {
    console.log(window.innerWidth)
    console.log(window.innerHeight)
  }, 500)
)

pick

import { pick } from 'petit-kit'

pick({ a: 1, b: '2', c: 3 }, ['a', 'c'])
// { 'a': 1, 'c': 3 }

throttle

import { throttle } from 'petit-kit'

setInterval(
  throttle(() => {
    console.log(Date.now())
  }, 1000),
  1
)

About

A tiny tool kit library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published