(buf, string, offset, length)
| 839 | } |
| 840 | |
| 841 | function base64Write (buf, string, offset, length) { |
| 842 | var charsWritten = blitBuffer(base64ToBytes(string), buf, offset, length) |
| 843 | return charsWritten |
| 844 | } |
| 845 | |
| 846 | function utf16leWrite (buf, string, offset, length) { |
| 847 | var charsWritten = blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected