js-crc32/ctest/fakeassert.js

3 lines
97 B
JavaScript
Raw Normal View History

2014-06-16 21:27:47 +00:00
var assert = {};
assert.equal = function(x,y) { if(x !== y) throw new Error(x + " !== " + y); };