(buf, string, offset, length)
| 3444 | } |
| 3445 | |
| 3446 | function utf8Write (buf, string, offset, length) { |
| 3447 | return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 3448 | } |
| 3449 | |
| 3450 | function asciiWrite (buf, string, offset, length) { |
| 3451 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected
searching dependent graphs…