(buf, string, offset, length)
| 1116 | } |
| 1117 | |
| 1118 | function ucs2Write (buf, string, offset, length) { |
| 1119 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 1120 | } |
| 1121 | |
| 1122 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 1123 | // Buffer#write(string) |
no test coverage detected