(buf, string, offset, length)
| 1112 | } |
| 1113 | |
| 1114 | function base64Write (buf, string, offset, length) { |
| 1115 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
| 1116 | } |
| 1117 | |
| 1118 | function ucs2Write (buf, string, offset, length) { |
| 1119 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected