(buf, string, offset, length)
| 1100 | } |
| 1101 | |
| 1102 | function utf8Write (buf, string, offset, length) { |
| 1103 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 1104 | } |
| 1105 | |
| 1106 | function asciiWrite (buf, string, offset, length) { |
| 1107 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected