(buf, string, offset, length)
| 10500 | } |
| 10501 | |
| 10502 | function utf8Write (buf, string, offset, length) { |
| 10503 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 10504 | } |
| 10505 | |
| 10506 | function asciiWrite (buf, string, offset, length) { |
| 10507 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected