UNPKG

131 BJavaScriptView Raw
1module.exports = function abortCb(cb, abort, onAbort) {
2 cb(abort)
3 onAbort && onAbort(abort === true ? null: abort)
4 return
5}
6