(value, offset = 0)
| 843 | } |
| 844 | |
| 845 | function writeUInt16BE(value, offset = 0) { |
| 846 | return writeU_Int16BE(this, value, offset, 0, 0xffff); |
| 847 | } |
| 848 | |
| 849 | function writeIntLE(value, offset, byteLength) { |
| 850 | if (byteLength === 6) |
nothing calls this directly
no test coverage detected