文件名称:bail-out:提前退出时在 nextTick 上调用 cb
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-18 19:14:09
JavaScript
纾困 获取除最后一个(回调)之外的所有参数,并使用process.nextTick上的第一个参数调用回调。 用例是您需要多次提前退出的情况,例如在验证期间。 它不会像那样拯救你的屁股。 安装 $ npm install bail-out --save 用法 随着bail-out 。 var bail = require ( 'bail-out' ) var fs = require ( 'fs' ) var path = require ( 'path' ) var home = require ( 'home-dir' ) function checkThisOut ( opts , cb ) { if ( typeof opts . foo != 'string' ) return bail ( new Error ( 'foo not string' ) , cb )
【文件预览】:
bail-out-master
----test.js(938B)
----.travis.yml(37B)
----README.md(2KB)
----.gitignore(14B)
----index.js(345B)
----package.json(584B)