Skip to content

Instantly share code, notes, and snippets.

@amitgupta15
Created April 30, 2020 20:46
Show Gist options
  • Save amitgupta15/70242da771f9801e42e0d10d5550424a to your computer and use it in GitHub Desktop.
Save amitgupta15/70242da771f9801e42e0d10d5550424a to your computer and use it in GitHub Desktop.
assert
function assert(isTrue) {
if (!isTrue) {
throw new Error();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment