From 8698bd694f3396e0f55b887f7e58ed023dca2219 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Sat, 24 Dec 2016 09:30:43 +0100 Subject: [PATCH] Removed unnecessary semicolon --- bin/now-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/now-list.js b/bin/now-list.js index fc64491..ca2a7ff 100755 --- a/bin/now-list.js +++ b/bin/now-list.js @@ -108,7 +108,7 @@ async function list(token) { const text = sorted.map(([name, deps]) => { const t = table(deps.map(({uid, url, created}) => { - const _url = url ? chalk.underline(`https://${url}`) : 'incomplete'; + const _url = url ? chalk.underline(`https://${url}`) : 'incomplete' const time = chalk.gray(ms(current - created) + ' ago') return [uid, _url, time] }), {align: ['l', 'r', 'l'], hsep: ' '.repeat(6), stringLength: strlen})