(buf, string, offset, length)
| 1416 | } |
| 1417 | |
| 1418 | function base64Write (buf, string, offset, length) { |
| 1419 | return blitBuffer(base64ToBytes(string), buf, offset, length) |
| 1420 | } |
| 1421 | |
| 1422 | function ucs2Write (buf, string, offset, length) { |
| 1423 | return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) |
no test coverage detected