(buf, string, offset, length)
| 1420 | } |
| 1421 | |
| 1422 | function ucs2Write (buf, string, offset, length) { |
| 1423 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 1424 | } |
| 1425 | |
| 1426 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 1427 | // Buffer#write(string) |
no test coverage detected