You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
426 B
11 lines
426 B
import _findNumbers from './findNumbers_.js';
|
|
import { normalizeArguments } from './parsePhoneNumber.js';
|
|
export default function findNumbers() {
|
|
var _normalizeArguments = normalizeArguments(arguments),
|
|
text = _normalizeArguments.text,
|
|
options = _normalizeArguments.options,
|
|
metadata = _normalizeArguments.metadata;
|
|
|
|
return _findNumbers(text, options, metadata);
|
|
}
|
|
//# sourceMappingURL=findNumbers.js.map
|