@bbn/bbn 1.0.24 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +1 -0
- package/dist/fn/crc32.js +1 -0
- package/package.json +1 -1
package/dist/bundle.js
CHANGED
|
@@ -2267,6 +2267,7 @@ var bbn = (() => {
|
|
|
2267
2267
|
"use strict";
|
|
2268
2268
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2269
2269
|
exports.crc32 = void 0;
|
|
2270
|
+
// this is a test
|
|
2270
2271
|
const crc32 = function (str) {
|
|
2271
2272
|
let crc = 0 ^ (-1);
|
|
2272
2273
|
for (let i = 0; i < str.length; i++) {
|
package/dist/fn/crc32.js
CHANGED