文件名称:p-throttle:节气门承诺返回和异步功能
文件大小:8KB
文件格式:ZIP
更新时间:2024-05-28 09:49:05
JavaScript
对油门 承诺返回和异步功能 它还可以使用正常功能。 例如,对于限制对外部API的调用很有用。 安装 $ npm install p-throttle 用法 在这里,节流函数每秒仅调用两次: const pThrottle = require ( 'p-throttle' ) ; const now = Date . now ( ) ; const throttle = pThrottle ( { limit : 2 , interval : 1000 } ) ; const throttled = throttle ( index => { const secDiff = ( ( Date . now ( ) - now ) / 1000 ) . toFixed ( ) ; return Promise . resolve ( ` ${ index } : ${ secDiff
【文件预览】:
p-throttle-main
----.gitignore(23B)
----package.json(861B)
----.npmrc(19B)
----index.js(2KB)
----test.js(5KB)
----.github()
--------workflows()
----license(1KB)
----readme.md(2KB)
----index.test-d.ts(1KB)
----.gitattributes(19B)
----.editorconfig(175B)
----index.d.ts(2KB)