Regular expression for phone numbers.
npm install phone-regex
A regular expression for matching phone numbers.
```
npm i --save phone-regex
`javascript
var phone = require('phone-regex');
// Exact string option
phone({ exact: true }).test('1234567890') // => true
phone({ exact: true }).test('apple 1234567890') // => false
// Global option (default)
phone().test('1234567890') // => true
phone().test('apple 1234567890') // => true
phone().test('apple') // => false
// Indian option
phone({ indian: true }).test('mango 9744142626') // => true
phone({ indian: true }).test('mango 1234567890') // => false
phone({ indian: true, exact: true }).test('mango 9744142626') // => false
`
* Regex from
MIT
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)git commit -am 'Add some feature'
3. Commit your changes ()git push origin my-new-feature`)
4. Push to the branch (
5. Create new Pull Request
Crafted with <3 by John Otander.
Support for Indian Numbers added by Livin Mathew.