(buf, string, offset, length)
| 3460 | } |
| 3461 | |
| 3462 | function ucs2Write (buf, string, offset, length) { |
| 3463 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 3464 | } |
| 3465 | |
| 3466 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 3467 | // Buffer#write(string) |
no test coverage detected
searching dependent graphs…