insist
A drop-in replacement for assert
, with a better default message.
var assert = ; // AssertionError: assert(3 instanceof Function);; //plus all properties of assertassert; // AssertionError: "baz" == "quux" from assert.equal(foo, bar);assert;assert;// etc...
Also, turn off these assertions with NO_ASSERT=1
env var.