UNPKG

resume-parser-mcp

Version:

To install dependencies:

6 lines (5 loc) 213 B
export function extractPhone(text: string) { const phoneRegex = /(\+?\d{1,3}[-.\s]?)?\(?\d{3}\)?[-.\s]?\d{3}[-.\s]?\d{4}/g; const matches = text.match(phoneRegex); return matches ? matches[0] : null; }