transaction and charge wallet online

This commit is contained in:
hamid zarghami
2025-02-05 12:13:56 +03:30
parent 31daaf6172
commit 9a923f931f
8 changed files with 244 additions and 104 deletions
+4
View File
@@ -2,3 +2,7 @@ export function isEmail(input: string): boolean {
const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
return emailRegex.test(input);
}
export function NumberFormat(number: number): string {
return Intl.NumberFormat("fa-IR").format(number);
}