(buf, string, offset, length)
| 113409 | return blitBuffer(base64ToBytes(string), buf, offset, length); |
| 113410 | } |
| 113411 | function ucs2Write(buf, string, offset, length) { |
| 113412 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); |
| 113413 | } |
| 113414 | Buffer.prototype.write = function write(string, offset, length, encoding) { |
| 113415 | // Buffer#write(string) |
| 113416 | if (offset === undefined) { |
no test coverage detected