We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8367213 commit a157685Copy full SHA for a157685
2 files changed
base/BufferShim.ts
@@ -379,11 +379,9 @@ class BrowserBuffer {
379
380
export function getBufferClass() : BufferConstructor {
381
if (typeof(Buffer) === "undefined") {
382
- console.log("Using BrowserBuffer implementation.");
383
// @ts-ignore
384
return BrowserBuffer;
385
} else {
386
- console.log("Using native Buffer implementation.");
387
return Buffer;
388
}
389
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "bufferstuff",
3
- "version": "1.3.2",
+ "version": "1.3.3",
4
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
5
"main": "./lib/index.js",
6
"types": "./lib/index.d.ts",
0 commit comments