C-style assertion lib.
With custom assertion message:
varassert=require('assert');assert(expr,'oh no it broke');Or auto-generated assertion message in
browsers that support Error.captureStackTrace():
varassert=require('assert');assert(user.name=='Tobi');MIT