(buf, string, offset, length)
| 1408 | } |
| 1409 | |
| 1410 | function asciiWrite (buf, string, offset, length) { |
| 1411 | return blitBuffer(asciiToBytes(string), buf, offset, length) |
| 1412 | } |
| 1413 | |
| 1414 | function latin1Write (buf, string, offset, length) { |
| 1415 | return asciiWrite(buf, string, offset, length) |
no test coverage detected