Socket
Socket
Sign inDemoInstall

crc

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crc - npm Package Compare versions

Comparing version 4.2.0 to 4.3.0

calculators/crc32mpeg.d.ts

1

cjs-default-unwrap/index.js

@@ -12,2 +12,3 @@ module.exports = {

crc32: require('./crc32'),
crc32mpeg: require('./crc32mpeg'),
crcjam: require('./crcjam'),

@@ -14,0 +15,0 @@ };

5

cjs/index.js

@@ -6,3 +6,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.crcjam = exports.crc32 = exports.crc24 = exports.crc16kermit = exports.crc16xmodem = exports.crc16modbus = exports.crc16ccitt = exports.crc16 = exports.crc8dvbs2 = exports.crc81wire = exports.crc8 = exports.crc1 = void 0;
exports.crcjam = exports.crc32mpeg2 = exports.crc32 = exports.crc24 = exports.crc16kermit = exports.crc16xmodem = exports.crc16modbus = exports.crc16ccitt = exports.crc16 = exports.crc8dvbs2 = exports.crc81wire = exports.crc8 = exports.crc1 = void 0;
const crc1_js_1 = __importDefault(require("./crc1.js"));

@@ -30,2 +30,4 @@ exports.crc1 = crc1_js_1.default;

exports.crc32 = crc32_js_1.default;
const crc32mpeg2_js_1 = __importDefault(require("./crc32mpeg2.js"));
exports.crc32mpeg2 = crc32mpeg2_js_1.default;
const crcjam_js_1 = __importDefault(require("./crcjam.js"));

@@ -45,3 +47,4 @@ exports.crcjam = crcjam_js_1.default;

crc32: crc32_js_1.default,
crc32mpeg2: crc32mpeg2_js_1.default,
crcjam: crcjam_js_1.default,
};

@@ -12,2 +12,3 @@ import crc1 from './crc1.js';

import crc32 from './crc32.js';
import crc32mpeg2 from './crc32mpeg2.js';
import crcjam from './crcjam.js';

@@ -25,2 +26,3 @@ export { crc1 };

export { crc32 };
export { crc32mpeg2 };
export { crcjam };

@@ -39,4 +41,5 @@ declare const _default: {

crc32: import("./types.js").CRCModule;
crc32mpeg2: import("./types.js").CRCModule;
crcjam: import("./types.js").CRCModule;
};
export default _default;

@@ -12,2 +12,3 @@ import crc1 from './crc1.js';

import crc32 from './crc32.js';
import crc32mpeg2 from './crc32mpeg2.js';
import crcjam from './crcjam.js';

@@ -25,2 +26,3 @@ export { crc1 };

export { crc32 };
export { crc32mpeg2 };
export { crcjam };

@@ -39,4 +41,5 @@ declare const _default: {

crc32: import("./types.js").CRCModule;
crc32mpeg2: import("./types.js").CRCModule;
crcjam: import("./types.js").CRCModule;
};
export default _default;

@@ -12,2 +12,3 @@ import crc1 from './crc1.js';

import crc32 from './crc32.js';
import crc32mpeg2 from './crc32mpeg2.js';
import crcjam from './crcjam.js';

@@ -25,2 +26,3 @@ export { crc1 };

export { crc32 };
export { crc32mpeg2 };
export { crcjam };

@@ -39,3 +41,4 @@ export default {

crc32,
crc32mpeg2,
crcjam,
};
{
"name": "crc",
"version": "4.2.0",
"version": "4.3.0",
"description": "Module for calculating Cyclic Redundancy Check (CRC) for Node.js and the browser.",

@@ -118,2 +118,12 @@ "author": {

},
"./crc32mpeg2": {
"types": "./mjs/crc32mpeg2.d.ts",
"import": "./mjs/crc32mpeg2.js",
"require": "./cjs-default-unwrap/crc32mpeg2.js"
},
"./calculators/crc32mpeg2": {
"types": "./mjs/calculators/crc32mpeg2.d.ts",
"import": "./mjs/calculators/crc32mpeg2.js",
"require": "./cjs-default-unwrap/calculators/crc32mpeg2.js"
},
"./crc81wire": {

@@ -120,0 +130,0 @@ "types": "./mjs/crc81wire.d.ts",

@@ -23,2 +23,3 @@ # crc

- CRC32 (`crc32`)
- CRC32 MPEG-2 (`crc32mpeg`)
- CRCJAM (`crcjam`)

@@ -25,0 +26,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc