Skip to content

Commit 57765f9

Browse files
committed
fix: missing comma
1 parent 485f522 commit 57765f9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/cli/gfx/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const
44
say = require('../../sayings/threads.json'),
55
serverUtil = require('./server-util')
66
template = require ('./template.js'),
7-
{sm, md, lg} = require('../../../bin/util/layout')
7+
{sm, md, lg} = require('../../../bin/util/layout'),
88
ts = Date.now(),
99
date_ob = new Date(ts),
1010
date = date_ob.getDate(),
@@ -25,8 +25,6 @@ const
2525
ansiTwitter = twitterhandle+space+twitterhashtag,
2626
ansiGCash = '(GCash) '+gcashNum;
2727

28-
29-
// random sayings
3028
const randomSay = () => {
3129
let random = Math.floor(Math.random() * say.length);
3230
return say[random];
@@ -78,6 +76,6 @@ exports.historyCountryTracker = (req, res, n, c, tC, d, tD, r, a, cl, cPOM, u, h
7876
}, (screen) => {
7977
res.send(screen+'\r\n'+'\033[?25h')
8078
})
81-
79+
8280
};
8381

0 commit comments

Comments
 (0)