2 Commits

Author SHA1 Message Date
c58cc2b0df 3.0.3 2024-04-25 18:06:05 +02:00
87273cbbbd fix(core): update 2024-04-25 18:06:04 +02:00
3 changed files with 13 additions and 4 deletions

View File

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

View File

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

View File

@ -12,7 +12,7 @@ export function base64ToUint8Array(base64: string): Uint8Array {
export const isUint8Array = (obj: any): obj is Uint8Array => {
return plugins.uInt8ArrayExtras.isUint8Array(obj);
}
};
export function isBufferLike(obj: any): obj is ArrayBufferLike | Buffer {
// Check for ArrayBufferLike objects in any environment
@ -27,3 +27,12 @@ export function isBufferLike(obj: any): obj is ArrayBufferLike | Buffer {
return false;
}
export function convertBufferToPureUint8Array(bufferArg: Buffer) {
// Create a new Uint8Array with the same length as the buffer
const uint8Array: Uint8Array = new Uint8Array(bufferArg.length);
// Copy the contents of the Buffer to the new Uint8Array
uint8Array.set(bufferArg);
return uint8Array;
}