(str, indexes)
| 702 | $.checkArgument(secret); |
| 703 | |
| 704 | const split = (str, indexes) => { |
| 705 | const parts = []; |
| 706 | indexes.push(str.length); |
| 707 | for (let i = 0; i < indexes.length; i++) { |
| 708 | parts.push(str.substring(i == 0 ? 0 : indexes[i - 1], indexes[i])); |
| 709 | } |
| 710 | return parts; |
| 711 | }; |
| 712 | |
| 713 | try { |
| 714 | const secretSplit = split(secret, [22, 74, 75]); |
no outgoing calls