3 lines
97 B
JavaScript
3 lines
97 B
JavaScript
|
var assert = {};
|
||
|
assert.equal = function(x,y) { if(x !== y) throw new Error(x + " !== " + y); };
|