js-crc32/ctest/fakeassert.js
SheetJS 1045f4f8e8 version bump 1.0.0: rolling checksums
- browser tests work in IE6+
- miscellaneous adjustments to tooling
2016-10-08 15:26:03 -04:00

3 lines
97 B
JavaScript

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