npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

phonewords

v2.3.0

Published

Two-way number-letter conversion according to ITU-T E.161.

Downloads

10

Readme

Phonewords

Two-way number-letter conversion as found on most phone dialers, according to ITU-T E.161.

Usage

Install the library:

npm install --save phonewords

Require the module and call one of its functions, depending on the desired direction of conversion:

let phonewords = require('phonewords');

Words to Numbers

Convert a string to a number with phonewords.wordsToNumbers.

Spaces and special characters are removed from the input. Numerals are left unchanged.

phonewords.wordsToNumbers('phonewords');
// => '7466396737'

phonewords.wordsToNumbers('pHoNewoRDs');
// => '7466396737'

phonewords.wordsToNumbers('P H O N E W O R D S');
// => '7466396737'

phonewords.wordsToNumbers('ph0new0rd5');
// => '7406390735'

phonewords.wordsToNumbers('!@#$%^&*()');
// => ''

Numbers to Words

Convert a number to an array of possible character combinations with phonewords.numbersToWords.

Because 0 and 1 do no correspond to any characters, they are not replaced.

phonewords.numbersToWords(2);
// => [ 'A', 'B', 'C' ]

phonewords.numbersToWords('2');
// => [ 'A', 'B', 'C' ]

phonewords.numbersToWords(22);
// => [ 'AA', 'AB', 'AC', 'BA', 'BB', 'BC', 'CA', 'CB', 'CC' ]

phonewords.numbersToWords(210);
// => [ 'A10', 'B10', 'C10' ]

phonewords.numbersToWords('+1 (201) ...');
// => [ '1A01', '1B01', '1C01' ]

The maximum input length is constrained such that the number of results must not exceed Math.pow(2, 32) - 1, the maximum size of an array. For inputs composed entirely of 3-character digits, this length is 20. For inputs composed entirely of 4-character digits, this length is 15. Inputs which exceed these constraints will cause the function to throw an error.

phonewords.numbersToWords('2'.repeat(21));
// => RangeError: Invalid array length

phonewords.numbersToWords('7'.repeat(16));
// => RangeError: Invalid array length

Lazy Loading

By default, this function has a quadratic time and memory complexity.

To avoid any issues this may cause, particularly when the output is to be streamed or paginated, set the second argument, lazy, to true. This will cause the function to return an array Proxy that will only calculate each result when its index is explicitly accessed. The length property is overridden to allow iterations over the object to exceed the normal Array length limit of Math.pow(2, 32) - 1. Some Array functions will break the functionality of the Proxy; therefore, only direct indexing and the use of the length property are supported.

let result = phonewords.numbersToWords('2'.repeat(20), true);

result;
// => [ <3486784401 empty items> ]

result[0];
// => 'AAAAAAAAAAAAAAAAAAAA'

result;
// => [ 'AAAAAAAAAAAAAAAAAAAA', <3486784400 empty items> ]

The maximum input length is constrained such that the number of results must not exceed Number.MAX_SAFE_INTEGER. For inputs composed entirely of 3-character digits, this length is 33. For inputs composed entirely of 4-character digits, this length is 26. Inputs which exceed these constraints will cause the function to throw an error.

phonewords.numbersToWords('2'.repeat(33), true);
// => [ <5559060566555523 empty items> ]

phonewords.numbersToWords('7'.repeat(26), true);
// => [ <4503599627370496 empty items> ]

phonewords.numbersToWords('2'.repeat(34), true);
// => RangeError: Invalid array length

phonewords.numbersToWords('7'.repeat(27), true);
// => RangeError: Invalid array length