1.0.6 • Published 6 years ago

petit-kit v1.0.6

Weekly downloads
9
License
MIT
Repository
github
Last release
6 years ago

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
)
1.0.6

6 years ago

1.0.5

6 years ago

1.0.2

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago