(buf, string, offset, length)
| 10516 | } |
| 10517 | |
| 10518 | function ucs2Write (buf, string, offset, length) { |
| 10519 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 10520 | } |
| 10521 | |
| 10522 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 10523 | // Buffer#write(string) |
no test coverage detected