(s)
| 8 | normalized.replace(/[\s_-]+/g, "").replace(/[()()【】\[\]{}·•]+/g, ""); |
| 9 | |
| 10 | export const normalizeLoose = (s) => |
| 11 | normalizeLooseFromNormalized(normalizeStr(s)); |
| 12 | |
| 13 | const memoizeStringFn = (fn) => { |
| 14 | const cache = new Map(); |
nothing calls this directly
no test coverage detected