remove redudancy process

This commit is contained in:
Fendy Heryanto
2025-11-20 10:00:41 +00:00
parent a8960aa628
commit 540db0c4ae

View File

@@ -9,5 +9,5 @@ export function utf8ify(str: string): string {
}
export function swaggerSanitizeSchemaName(name: string) {
return name.replaceAll(' ', '_').replaceAll('?', '_').replace(/\W/g, '_');
return name.replace(/\W/g, '_');
}