(buf, string, offset, length)
| 759 | return blitBuffer(base64ToBytes(string), buf, offset, length); |
| 760 | } |
| 761 | function ucs2Write(buf, string, offset, length) { |
| 762 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); |
| 763 | } |
| 764 | Buffer.prototype.write = function write(string, offset, length, encoding) { |
| 765 | // Buffer#write(string) |
| 766 | if (offset === undefined) { |
no test coverage detected
searching dependent graphs…