You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
557 B
JavaScript

import PhoneNumberMatcher from './PhoneNumberMatcher.js'
import normalizeArguments from './normalizeArguments.js'
export default function searchPhoneNumbersInText() {
const { text, options, metadata } = normalizeArguments(arguments)
const matcher = new PhoneNumberMatcher(text, { ...options, v2: true }, metadata)
return {
[Symbol.iterator]() {
return {
next: () => {
if (matcher.hasNext()) {
return {
done: false,
value: matcher.next()
}
}
return {
done: true
}
}
}
}
}
}