UNPKG
nali-cli
Version:
beta (2.1.0-beta-3)
latest (2.1.4)
next (2.1.4-alpha.8.ipdb)
2.1.4
2.1.4-alpha.8.ipdb
2.1.4-alpha.7.ipdb
2.1.4-alpha.4.ipdb
2.1.4-alpha.3.ipdb
2.1.4-alpha.2.ipdb
2.1.4-alpha.1.ipdb
2.1.3
2.1.2
2.1.1
2.1.0
2.1.0-beta-3
2.1.0-beta-2
2.1.0-beta
2.0.1
2.0.0
1.0.0
0.1.5
0.1.0
0.0.1
Parse geoinfo of IP Address without leaving your terminal
nali.skk.moe
SukkaW/nali-cli
nali-cli
/
util
/
check-dat.js
12 lines
(10 loc)
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
{ existsSync } =
require
(
'fs'
);
const
{ qqwryDataPath } =
require
(
'./const'
); module.exports = (
fn
) =>
{
if
(!
existsSync
(qqwryDataPath)) {
const
{ downloadQqwry } =
require
(
'./qqwryUpdate'
);
downloadQqwry
(qqwryDataPath); }
else
{
fn
(
)
; } }