文件名称:callback-timeout:如果在自然调用之前已超过超时,则使用单个错误参数执行回调
文件大小:61KB
文件格式:ZIP
更新时间:2024-06-04 04:25:00
JavaScript
回调超时 如果在自然调用之前已超过超时,则使用单个错误参数执行回调 例子 var timeout = require ( 'callback-timeout' ) function doSomethingFast ( cb ) { setTimeout ( cb , 100 ) } function doSomethingSlow ( cb ) { setTimeout ( cb , 2000 ) } doSomethingFast ( timeout ( function doSomethingFastHandler ( err ) { if ( err ) console . log ( err . code , err . message ) // Will not happen else console . log ( 'doSomethingFastH
【文件预览】:
callback-timeout-master
----.gitignore(106B)
----README.md(3KB)
----CHANGELOG.md(298B)
----test()
--------error-message.js(845B)
--------error-code.js(289B)
--------timeout.js(1KB)
--------notimeout.js(776B)
----.zuul.yml(339B)
----LICENSE(1KB)
----package.json(2KB)
----index.js(520B)
----example()
--------simple.js(599B)
----.travis.yml(631B)
----errors.js(171B)
----package-lock.json(317KB)