@nativewrappers/client
Version:
Javascript/Typescript wrapper for the FiveM natives
9 lines (8 loc) • 320 B
JavaScript
/**
* get uint32 from uint8 array
*
* @param buffer - Uint8Array
* @param start - The beginning of the specified portion of the array
* @param end - The end of the specified portion of the array
*/
export const getUInt32FromUint8Array = (buffer, start, end) => new Uint32Array(buffer.slice(start, end).buffer)[0];