Phone Regex
A regular expression for matching phone numbers.
Installation
npm i --save phone-regex
Usage
var phone = ; // Exact string option // => true // => false // Global option (default) // => true // => true // => false // Indian option // => true // => false // => false
Acknowledgements
- Regex from http://stackoverflow.com/a/16702965/1378668.
License
MIT
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Crafted with <3 by John Otander. Support for Indian Numbers added by Livin Mathew.