(num)
| 683 | /* @__PURE__ */ arrayMap(ENCODE, (char, index) => [char, index]) |
| 684 | ); |
| 685 | var encode = (num) => ENCODE[num & MASK6]; |
| 686 | var decode = (str, pos) => mapGet(DECODE, str[pos]) ?? 0; |
| 687 | var getRandomValues = GLOBAL.crypto ? (array) => GLOBAL.crypto.getRandomValues(array) : ( |
| 688 | /* istanbul ignore next */ |
no outgoing calls
no test coverage detected
searching dependent graphs…