(arr)
| 14466 | return picked |
| 14467 | } |
| 14468 | static arrayToMap(arr) { |
| 14469 | const map = {} |
| 14470 | arr.forEach(val => (map[val] = true)) |
| 14471 | return map |
| 14472 | } |
| 14473 | static _replaceNonAlphaNumericCharactersWithCharCodes(str) { |
| 14474 | return str |
| 14475 | .replace(/[^a-zA-Z0-9]/g, sub => { |
no test coverage detected