UNPKG

libphonenumber-js

Version:

A simpler (and smaller) rewrite of Google Android's popular libphonenumber library

11 lines (10 loc) 325 B
import PhoneNumberMatcher from './PhoneNumberMatcher'; export default function findNumbers(text, options, metadata) { var matcher = new PhoneNumberMatcher(text, options, metadata); var results = []; while (matcher.hasNext()) { results.push(matcher.next()); } return results; } //# sourceMappingURL=findNumbers_.js.map