UNPKG
ipip-ipdb
Version:
latest (0.6.0)
0.6.0
0.3.0
0.2.0
0.1.0
IPIP.net 官方支持的 IP 数据库 ipdb 格式查询代码
github.com/ipipdotnet/ipdb-nodejs
ipipdotnet/ipdb-nodejs
ipip-ipdb
/
lib
/
asn_info.js
9 lines
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module.exports =
class
ASNInfo
{
constructor
(
data
) {
this
.asn =
data
[
0
];
this
.registry =
data
[
1
];
this
.country =
data
[
2
];
this
.name =
data
[
3
];
this
.org =
data
[
4
]; } }