Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mzdata

Package Overview
Dependencies
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mzdata - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

3

lib/index.js

@@ -104,2 +104,5 @@ 'use strict';

return new Int32Array(uint8Array.buffer, 0, uint8Array.length / 4);
case 64:
// eslint-disable-next-line no-undef
return new BigInt64Array(uint8Array.buffer, 0, uint8Array.length / 8);
default:

@@ -106,0 +109,0 @@ throw new TypeError(`Incorrect precision: ${precision}`);

2

package.json
{
"name": "mzdata",
"version": "2.3.0",
"version": "2.3.1",
"description": "Read and explore mzData v1.05 files",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -93,2 +93,5 @@ import pako from 'pako';

return new Int32Array(uint8Array.buffer, 0, uint8Array.length / 4);
case 64:
// eslint-disable-next-line no-undef
return new BigInt64Array(uint8Array.buffer, 0, uint8Array.length / 8);
default:

@@ -95,0 +98,0 @@ throw new TypeError(`Incorrect precision: ${precision}`);

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