ccashfrontend/views/node_modules/libphonenumber-js/es6/validate.js
2021-06-18 09:20:09 +10:00

12 lines
No EOL
487 B
JavaScript

import _isValidNumber from './validate_';
import { normalizeArguments } from './getNumberType'; // Finds out national phone number type (fixed line, mobile, etc)
export default function isValidNumber() {
var _normalizeArguments = normalizeArguments(arguments),
input = _normalizeArguments.input,
options = _normalizeArguments.options,
metadata = _normalizeArguments.metadata;
return _isValidNumber(input, options, metadata);
}
//# sourceMappingURL=validate.js.map