|
|
|
|
|
by CloselyChunky
1891 days ago
|
|
In my opinion this pattern is better if you write it like this: _ = isDefined(user) || throw new Error("user must be defined")
This reads way more natural for me. "A user is defined OR throw an error"...I've also seen this in Perl (`do_something() || die()`) and shell scripts (`grep -q || die "not found"`). |
|