(buf, string, offset, length)
| 3448 | } |
| 3449 | |
| 3450 | function asciiWrite (buf, string, offset, length) { |
| 3451 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
| 3452 | } |
| 3453 | |
| 3454 | function latin1Write (buf, string, offset, length) { |
| 3455 | return asciiWrite(buf, string, offset, length) |
no test coverage detected
searching dependent graphs…