(buf, string, offset, length)
| 79196 | } |
| 79197 | |
| 79198 | function ucs2Write (buf, string, offset, length) { |
| 79199 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 79200 | } |
| 79201 | |
| 79202 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 79203 | // Buffer#write(string) |
no test coverage detected