Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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. Pass some extra configuration options to the format method.
phoneFormatter.format("(212) 555-1212", "NNN.NNN.NNNN", {normalize: true})
// returns "212.555.1212"
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.
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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.