Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
phone-formatter
Advanced tools
Parsing and formatting phone numbers so you don't have to.
Install the module with: npm install phone-formatter
Phone-formatter is pretty straight-forward. First, it can normalize pretty much any format you can throw at it. If it can't, then send a pull request with a failing test and it will (shortly thereafter).
var phoneFormatter = require('phone-formatter');
phoneFormatter.normalize('212.555.1212');
// returns "2125551212"
phoneFormatter.normalize('+1 (212) 555-1212');
// returns "2125551212"
You get the idea. It can also format a series of ten digits into almost any format your heart desires. Use the letter "N" as a place holder.
phoneFormatter.format("2125551212", "(NNN) NNN-NNNN");
// returns "(212) 555-1212"
That's cool. Do it.
phoneFormatter.format("(212) 555-1212", "NNN.NNN.NNNN")
// returns "212.555.1212"
If for some reason, this is not what you want: you can turn it off.
phoneFormatter.format("(212) 555-1212", "NNN.NNN.NNNN", {normalize: false})
// Will probably crash and burn hideously. What are you even doing?
As it stands, there are only two methods, normalize
and format
. They are pretty much fleshed out above. That said, I'm reserving this second for future greatness.
I can confirm that Phone Formatter can normalize the following formats.
It may handle ever more, but I haven't tested it.
Pull requests are welcome as long as they are accompanied by tests.
Right now, this library is incredibly American-centric and that kind of stinks, but my use case consisted exclusively of American phone numbers. If you'd like to tweak Phone Formatter to better suit your situation, please do!
Brief Style Guide: Two spaces, no space before function parentheses, semi-colons everywhere.
Copyright (c) 2013 Steve Kinney
Licensed under the MIT license.
FAQs
Parse and format telephone numbers.
The npm package phone-formatter receives a total of 7,801 weekly downloads. As such, phone-formatter popularity was classified as popular.
We found that phone-formatter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.