(s, o, i, a)
| 21800 | return blitBuffer(base64ToBytes(o), s, i, a) |
| 21801 | } |
| 21802 | function ucs2Write(s, o, i, a) { |
| 21803 | return blitBuffer( |
| 21804 | (function utf16leToBytes(s, o) { |
| 21805 | let i, a, u |
| 21806 | const _ = [] |
| 21807 | for (let w = 0; w < s.length && !((o -= 2) < 0); ++w) |
| 21808 | ((i = s.charCodeAt(w)), (a = i >> 8), (u = i % 256), _.push(u), _.push(a)) |
| 21809 | return _ |
| 21810 | })(o, s.length - i), |
| 21811 | s, |
| 21812 | i, |
| 21813 | a |
| 21814 | ) |
| 21815 | } |
| 21816 | function base64Slice(s, o, i) { |
| 21817 | return 0 === o && i === s.length ? a.fromByteArray(s) : a.fromByteArray(s.slice(o, i)) |
| 21818 | } |
no test coverage detected