You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check() function calls process.exit(1) if err is truthy, which means done() never actually gets called where this has been an error, so this scenario can be handled by the code using this library. Should process.exit() be called only if there is no done function?
The text was updated successfully, but these errors were encountered:
In these lines:
The
check()
function callsprocess.exit(1)
iferr
is truthy, which meansdone()
never actually gets called where this has been an error, so this scenario can be handled by the code using this library. Shouldprocess.exit()
be called only if there is nodone
function?The text was updated successfully, but these errors were encountered: