Skip to content

Instantly share code, notes, and snippets.

@espadrine
Created November 19, 2012 14:57
Show Gist options
  • Save espadrine/4111104 to your computer and use it in GitHub Desktop.
Save espadrine/4111104 to your computer and use it in GitHub Desktop.
The only assert implementation that makes sense
function assert(condition) {
if (!condition) { debugger; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment