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.
11 lines
449 B
JavaScript
11 lines
449 B
JavaScript
import normalizeArguments from './normalizeArguments.js';
|
|
import parsePhoneNumber_ from './parsePhoneNumber_.js';
|
|
export default function parsePhoneNumber() {
|
|
var _normalizeArguments = normalizeArguments(arguments),
|
|
text = _normalizeArguments.text,
|
|
options = _normalizeArguments.options,
|
|
metadata = _normalizeArguments.metadata;
|
|
|
|
return parsePhoneNumber_(text, options, metadata);
|
|
}
|
|
//# sourceMappingURL=parsePhoneNumber.js.map
|