(buf, string, offset, length)
| 862 | } |
| 863 | |
| 864 | function ucs2Write (buf, string, offset, length) { |
| 865 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
| 866 | } |
| 867 | |
| 868 | Buffer.prototype.write = function write (string, offset, length, encoding) { |
| 869 | // Buffer#write(string) |
no test coverage detected
searching dependent graphs…