mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 16:12:14 +11:00
9 lines
No EOL
329 B
JavaScript
9 lines
No EOL
329 B
JavaScript
import _isValidNumber from './validate_'
|
|
import { normalizeArguments } from './getNumberType'
|
|
|
|
// Finds out national phone number type (fixed line, mobile, etc)
|
|
export default function isValidNumber()
|
|
{
|
|
const { input, options, metadata } = normalizeArguments(arguments)
|
|
return _isValidNumber(input, options, metadata)
|
|
} |