new add relative

This commit is contained in:
CHIEFSOFT\ameye
2024-01-10 09:52:28 -05:00
parent 8d2c5485a2
commit bf3d991f69
8 changed files with 70 additions and 18 deletions
+15
View File
@@ -0,0 +1,15 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class CommonfuncService {
constructor() { }
validateEmail(email) {
var re = /\S+@\S+\.\S+/;
return re.test(email);
}
}