js-crc32/ctest/fakeassert.js
2014-06-16 17:27:47 -04:00

3 lines
86 B
JavaScript

var assert = {};
assert.equal = function(x,y) { if(x !== y) throw x + " !== " + y; };