(str, pos)
| 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 */ |
| 689 | (array) => arrayMap(array, () => mathFloor(mathRandom() * 256)) |