1.0.6 • Published 5 years ago

petit-kit v1.0.6

Weekly downloads
9
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.5

5 years ago

1.0.2

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago