/* crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */ /* vim: set ts=2: */ /*exported CRC32 */ var CRC32; /*:: declare var DO_NOT_EXPORT_CRC: any; */ /*:: declare var define: any; */ (function (factory) { /*jshint ignore:start */ if(typeof DO_NOT_EXPORT_CRC === 'undefined') { if('object' === typeof exports) { factory(exports); } else if ('function' === typeof define && define.amd) { define(function () { var module = {}; factory(module); return module; }); } else { factory(CRC32 = {}); } } else { factory(CRC32 = {}); } /*jshint ignore:end */ }(function(CRC32) {