1.1.4 • Published 2 years ago

cj-utils v1.1.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

安装

npm i cj-utils

导入

const utils = require('./cj-utils')

格式化时间

const times = utils.format(new Date())

防抖

btns.onclick = debounce(dy,2000)

      function dy(){
          console.log(inputs.value);
      }

节流

 btns.onclick = _throttle(dy,2000)

      function dy(){
          console.log(inputs.value);
      }

开源协议

ISC

1.1.0

2 years ago

1.1.4

2 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago