mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-21 17:12:33 +08:00
11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
|
|
const sizeBuffer = new Uint16Array([356]);
|
|
|
|
console.log(sizeBuffer);
|
|
|
|
const int = 356
|
|
|
|
const test = new Uint8Array([(356 >> 8) & 0xff, 356 & 0xff])
|
|
|
|
console.log(test);
|