assert.js 91 B

1234
  1. exports.ok = function(condition){
  2. if (!condition)
  3. throw new Error("assertion failed");
  4. }