(buf, string, offset, length)
| 1404 | } |
| 1405 | |
| 1406 | function utf8Write (buf, string, offset, length) { |
| 1407 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 1408 | } |
| 1409 | |
| 1410 | function asciiWrite (buf, string, offset, length) { |
| 1411 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected