js-adler32/bits/00_header.js
SheetJS 8215562b11 version bump 0.3.0
- AMD support (h/t @lmk123 for initially contributing to js-crc32)
- added missing bitshift (h/t @florentbr for initially contributing to js-crc32)
- flow annotaations
- updated ci node versions
2016-01-16 00:36:58 -05:00

23 lines
558 B
JavaScript

/* adler32.js (C) 2014-present SheetJS -- http://sheetjs.com */
/* vim: set ts=2: */
var ADLER32;
/*:: declare var DO_NOT_EXPORT_ADLER: any; */
/*:: declare var define: any; */
(function (factory) {
if(typeof DO_NOT_EXPORT_ADLER === 'undefined') {
if('object' === typeof exports) {
factory(exports);
} else if ('function' === typeof define && define.amd) {
define(function () {
var module = {};
factory(module);
return module;
});
} else {
factory(ADLER32 = {});
}
} else {
factory(ADLER32 = {});
}
}(function(ADLER32) {