AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 presentation-ai
sanify.ts
根目录
/
src
/
components
/
ui
/
font-picker
/
utils
/
sanify.ts
1
export function sanify(fontName: string): string {
2
return fontName
3
.replace(/\s+/g, "_")
4
.replace(/[^a-zA-Z0-9-_]/g, "")
5
.toLowerCase();
6
}
7
7 lines
TYPESCRIPT