first commit

This commit is contained in:
2026-08-27 17:29:18 -04:00
commit 2405dda41b
44 changed files with 11368 additions and 0 deletions
@@ -0,0 +1 @@
export * from './remove-special-character.utils';
@@ -0,0 +1,6 @@
export function removeSpecialCharacter(text: string): string {
return text
.normalize('NFD')
.replace(/[\u0300-\u036f]/g, '')
.replace(/[^a-zA-Z0-9\s]/g, '');
}