(buf, string, offset, length)
| 835 | } |
| 836 | |
| 837 | function binaryWrite (buf, string, offset, length) { |
| 838 | return asciiWrite(buf, string, offset, length) |
| 839 | } |
| 840 | |
| 841 | function base64Write (buf, string, offset, length) { |
| 842 | var charsWritten = blitBuffer(base64ToBytes(string), buf, offset, length) |
no test coverage detected