UNPKG

329 BJavaScriptView Raw
1import _isValidNumber from './validate_'
2import { normalizeArguments } from './getNumberType'
3
4// Finds out national phone number type (fixed line, mobile, etc)
5export default function isValidNumber()
6{
7 const { input, options, metadata } = normalizeArguments(arguments)
8 return _isValidNumber(input, options, metadata)
9}
\No newline at end of file