Skip to content

Commit a157685

Browse files
committed
Remove debug messages and bump version for release
1 parent 8367213 commit a157685

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

base/BufferShim.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,11 +379,9 @@ class BrowserBuffer {
379379

380380
export function getBufferClass() : BufferConstructor {
381381
if (typeof(Buffer) === "undefined") {
382-
console.log("Using BrowserBuffer implementation.");
383382
// @ts-ignore
384383
return BrowserBuffer;
385384
} else {
386-
console.log("Using native Buffer implementation.");
387385
return Buffer;
388386
}
389387
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bufferstuff",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)