(buf, string, offset, length)
| 928 | } |
| 929 | |
| 930 | function ucs2Write (buf, string, offset, length) { |
| 931 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 932 | } |
| 933 | |
| 934 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 935 | // Buffer#write(string) |
no test coverage detected
searching dependent graphs…