标签:OLE sse eui nts 字节 内容 跳过 pre 指定
buf.writeUInt8(value, offset[, noAssert])
const buf = Buffer.allocUnsafe(4);
buf.writeUInt8(0x3, 0);
buf.writeUInt8(0x4, 1);
buf.writeUInt8(0x23, 2);
buf.writeUInt8(0x42, 3);
console.log(buf);
// Prints: <Buffer 03 04 23 42>
标签:OLE sse eui nts 字节 内容 跳过 pre 指定
原文地址:https://www.cnblogs.com/lalalagq/p/9908839.html