(str)
| 3479 | } |
| 3480 | }; |
| 3481 | function stringToArray(str) { |
| 3482 | const strLength = str.length; |
| 3483 | const array = new Array(strLength); |
| 3484 | for (let i = 0; i < strLength; ++i) { |
| 3485 | array[i] = str.charCodeAt(i); |
| 3486 | } |
| 3487 | return array; |
| 3488 | } |
| 3489 | } |
| 3490 | }); |
| 3491 |
no outgoing calls
no test coverage detected