mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 16:12:14 +11:00
12 lines
No EOL
487 B
JavaScript
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
|