mnc-lookup
v0.0.4
Published
list of mobile network operators importable as a module
Downloads
18
Maintainers
Readme
SYNOPSIS
module for mobile network operator lookup
USAGE
npm install mnc-lookup
var mnc = require('mnc-lookup');
var id = 310070;
var res = mnc({id: id});
if (res) {
console.log("id %d => %s", id, res.name);
}