From a157685fcc170fe15d1af16f3ae89b8fc422a02d Mon Sep 17 00:00:00 2001 From: Holly Date: Tue, 24 Oct 2023 12:23:25 +0100 Subject: [PATCH] Remove debug messages and bump version for release --- base/BufferShim.ts | 2 -- package.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/base/BufferShim.ts b/base/BufferShim.ts index 96d3fe3..8bb5268 100644 --- a/base/BufferShim.ts +++ b/base/BufferShim.ts @@ -379,11 +379,9 @@ class BrowserBuffer { export function getBufferClass() : BufferConstructor { if (typeof(Buffer) === "undefined") { - console.log("Using BrowserBuffer implementation."); // @ts-ignore return BrowserBuffer; } else { - console.log("Using native Buffer implementation."); return Buffer; } } \ No newline at end of file diff --git a/package.json b/package.json index e009c93..46087f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bufferstuff", - "version": "1.3.2", + "version": "1.3.3", "description": "A set of utility classes for reading and writing binary data in NodeJS and the browser", "main": "./lib/index.js", "types": "./lib/index.d.ts",