文件名称:call-later:缓冲对函数的调用,直到下一个刻度为止,并立即获取所有参数
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-06 10:50:28
JavaScript
待会儿再聊 缓冲对函数的调用,直到下一个刻度为止,并立即获取所有参数。 当您有一个函数被多次同步调用但您只想异步地对每个数据一次处理某些数据时,请使用此函数。 这使您可以创建一个函数,该函数将使用可变数量的参数并对其进行缓冲。 在下一个刻度时,将使用所使用的参数数组来调用您的回调。 npm install --save call-later 例子 var later = require ( "call-later" ) ; var fn = later ( function ( args ) { console . log ( "Shows up second" ) ; console . log ( args ) ; // [ ['foo'], ['bar'], ['baz'] ] } ) ; fn ( "foo" ) ; fn ( "bar" ) ; fn
【文件预览】:
call-later-master
----example.js(218B)
----LICENSE(757B)
----README.md(1KB)
----.gitignore(526B)
----index.js(385B)
----package.json(698B)