(buf, string, offset, length)
| 825 | } |
| 826 | |
| 827 | function utf8Write (buf, string, offset, length) { |
| 828 | var charsWritten = blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) |
| 829 | return charsWritten |
| 830 | } |
| 831 | |
| 832 | function asciiWrite (buf, string, offset, length) { |
| 833 | var charsWritten = blitBuffer(asciiToBytes(string), buf, offset, length) |
no test coverage detected