UNPKG
resume-parser-mcp
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
To install dependencies:
resume-parser-mcp
/
src
/
parser
/
extractResumeField
/
extractEmail.ts
5 lines
•
207 B
text/typescript
View Raw
1
2
3
4
5
export
function
extractEmail
(
text: string
) {
const
emailRegex =
/\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b/g
;
const
matches = text.
match
(emailRegex);
return
matches ? matches[
0
] :
null
; }