Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@jsprismarine/jsbinaryutils

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jsprismarine/jsbinaryutils - npm Package Compare versions

Comparing version
5.3.3
to
5.4.3
+1
-1
dist/cjs/BinaryStream.js

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

write(buf) {
this.binary.push(...buf);
this.binary = [...this.binary, ...buf];
this.writeIndex += buf.byteLength;

@@ -32,0 +32,0 @@ }

@@ -24,3 +24,3 @@ import assert from 'assert';

write(buf) {
this.binary.push(...buf);
this.binary = [...this.binary, ...buf];
this.writeIndex += buf.byteLength;

@@ -27,0 +27,0 @@ }

{
"name": "@jsprismarine/jsbinaryutils",
"version": "5.3.3",
"version": "5.4.3",
"description": "Basic binary data managing tool written in TypeScript.",

@@ -5,0 +5,0 @@ "main": "./dist/cjs/BinaryStream.js",