buf.writeUInt32LE(value, offset[, noAssert])
value <Number> Bytes to be written to Buffer
offset <Number> 0 <= offset <= buf.length - 4
noAssert <Boolean> Default: false Return: <Number> The offset plus the number of written bytes
Writes value to the Buffer at the specified offset with specified endian format (writeUInt32BE() writes big endian, writeUInt32LE() writes little endian). The value should be a valid unsigned 32-bit integer. Behavior is not defined