(buf, string, offset, length)
| 10504 | } |
| 10505 | |
| 10506 | function asciiWrite (buf, string, offset, length) { |
| 10507 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
| 10508 | } |
| 10509 | |
| 10510 | function latin1Write (buf, string, offset, length) { |
| 10511 | return asciiWrite(buf, string, offset, length) |
no test coverage detected