
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
e164.js is a browser friendly node module to lookup country name based on given international phone number complying to E.164 format.
e162.js doesn't check whether the phone number is a valid one or not. It simply returns the associated country based on prefix matching. The matcher starts from the last digit and revert lookup until a number matches from the lookup hash.
If a number can't be found from the lookup hash, number is assumed to be invalid and returns undefined.
If you're into formating, parsing or validation of any sort, checkout Google's own.
Directly from test/test.js
var e164 = require('../e164'), assert = require('assert');
assert.deepEqual({country: "Canada", code: "CA"}, e164.lookup('15141234567'));
assert.deepEqual({country: "Toll Free", code: "US"}, e164.lookup('18001231234'));
assert.deepEqual({country: "United States", code: "US"}, e164.lookup('18703434345'));
assert.deepEqual({country: "India", code: "IN"}, e164.lookup('9191'));
assert.deepEqual({country: "Norfolk Island", code: "NF"}, e164.lookup('672322424'));
assert.deepEqual({country: "ICO Global (Mobile Satellite Service)", code: "ZZ"}, e164.lookup('88112311'));
assert.deepEqual({country: "Canada", code: "CA"}, e164.lookup('1418'));
assert.deepEqual(undefined, e164.lookup('0'));
Almost directly from test/index.html
<script src="e164.min.js"></script>
<!--
<script src="e164.js"></script>
-->
<script>
console.log(e164.lookup('15145551234'));
</script>
$ git clone git://github.com/pdeschen/e164.js.git
$ sudo npm install e164 [-g]
reverse
lookup method returning a list of numbers prefixes for given country.validate(number, country)
method returning true/false whether given number fits in given country.(The MIT License)
Copyright 2012 Pascal Deschenes (pdeschen @ gmail . com) . All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
lookup country name given international phone number e164 format.
The npm package e164 receives a total of 153 weekly downloads. As such, e164 popularity was classified as not popular.
We found that e164 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.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.