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
Most of the time return true means the function exited correctly. export_error() inside exporters.js works the other way around. Early exits work in yet another way, since they only exit with a return;
The code might look cleaner with throwing errors instead of using return. Or using Either or other monads.
The text was updated successfully, but these errors were encountered:
Most of the time
return true
means the function exited correctly.export_error()
insideexporters.js
works the other way around. Early exits work in yet another way, since they only exit with areturn;
The code might look cleaner with throwing errors instead of using return. Or using Either or other monads.
The text was updated successfully, but these errors were encountered: