UNPKG

@gang-js/core

Version:

a state sharing algorithm

6 lines (5 loc) 151 B
export function uint32ToBytes(value) { const buffer = new ArrayBuffer(4); new DataView(buffer).setUint32(0, value, true); return buffer; }