(buf, string, offset, length)
| 830 | } |
| 831 | |
| 832 | function asciiWrite (buf, string, offset, length) { |
| 833 | var charsWritten = blitBuffer(asciiToBytes(string), buf, offset, length) |
| 834 | return charsWritten |
| 835 | } |
| 836 | |
| 837 | function binaryWrite (buf, string, offset, length) { |
| 838 | return asciiWrite(buf, string, offset, length) |
no test coverage detected