4 Commits

Author SHA1 Message Date
158614c62c 3.0.0 2024-04-17 20:30:33 +02:00
f11114f6dc BREAKING CHANGE(core): update 2024-04-17 20:30:32 +02:00
f233cb1dcd 2.0.3 2024-04-17 19:49:30 +02:00
866da6f21a fix(core): update 2024-04-17 19:49:30 +02:00
3 changed files with 4 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartbuffer", "name": "@push.rocks/smartbuffer",
"version": "2.0.2", "version": "3.0.0",
"private": false, "private": false,
"description": "A library for managing ArrayBufferLike structures including conversion between Base64 and Uint8Array, and buffer validation.", "description": "A library for managing ArrayBufferLike structures including conversion between Base64 and Uint8Array, and buffer validation.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartbuffer', name: '@push.rocks/smartbuffer',
version: '2.0.2', version: '3.0.0',
description: 'A library for managing ArrayBufferLike structures including conversion between Base64 and Uint8Array, and buffer validation.' description: 'A library for managing ArrayBufferLike structures including conversion between Base64 and Uint8Array, and buffer validation.'
} }

View File

@ -10,16 +10,6 @@ export function base64ToUint8Array(base64: string): Uint8Array {
return plugins.uInt8ArrayExtras.base64ToUint8Array(base64); return plugins.uInt8ArrayExtras.base64ToUint8Array(base64);
} }
export function isBufferLike(obj: any): obj is ArrayBufferLike | Buffer { export const isUint8Array = (obj: any): obj is Uint8Array => {
// Check for ArrayBufferLike objects in any environment return plugins.uInt8ArrayExtras.isUint8Array(obj);
if (obj && typeof obj.byteLength === 'number') {
return true;
}
// Additional check specific to Node.js environment for Buffer objects
if (typeof Buffer !== 'undefined' && Buffer.isBuffer) {
return Buffer.isBuffer(obj);
}
return false;
} }