https://github.com/dweinstein/node-mnc-lookup
module for mobile network operator lookup
https://github.com/dweinstein/node-mnc-lookup
Last synced: 20 days ago
JSON representation
module for mobile network operator lookup
- Host: GitHub
- URL: https://github.com/dweinstein/node-mnc-lookup
- Owner: dweinstein
- License: mit
- Created: 2015-06-05T21:34:39.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-06T05:44:50.000Z (about 11 years ago)
- Last Synced: 2025-10-12T17:06:17.964Z (9 months ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SYNOPSIS
module for mobile network operator lookup
# USAGE
```shell
npm install mnc-lookup
```
```javascript
var mnc = require('mnc-lookup');
var id = 310070;
var res = mnc({id: id});
if (res) {
console.log("id %d => %s", id, res.name);
}
```