refactor: standardize quote styles to single quotes across all files

This commit is contained in:
2026-05-04 20:39:10 -03:00
committed by hueso
parent af897e7dd4
commit 9c948d7da4
69 changed files with 1839 additions and 1828 deletions

View File

@@ -11,6 +11,6 @@ export const pixFormatValidation = (pixKey: string): boolean => {
};
export const postProcessKey = (pixKey: string): string => {
pixKey = pixKey.replace(/[-.()/]/g, "");
pixKey = pixKey.replace(/[-.()/]/g, '');
return pixKey;
};