(buf, string, offset, length)
| 79180 | } |
| 79181 | |
| 79182 | function utf8Write (buf, string, offset, length) { |
| 79183 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 79184 | } |
| 79185 | |
| 79186 | function asciiWrite (buf, string, offset, length) { |
| 79187 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected