feat(FN-1748): merge fusion/fn-1748

This commit is contained in:
gsxdsm
2026-04-14 22:45:59 -07:00
parent 9fc5314f4d
commit 2800f57d78
34 changed files with 133 additions and 151 deletions

View File

@@ -8,7 +8,7 @@ import type { ModelInfo } from "../api";
* Preserves spaces (which serve as field/word boundaries) and alphanumeric chars.
*/
function normalize(s: string): string {
return s.toLowerCase().replace(/[-_.\/]/g, "");
return s.toLowerCase().replace(/[-_./]/g, "");
}
/**