Browse Source

Removed unnecessary semicolon

master
Leo Lamprecht 8 years ago
parent
commit
8698bd694f
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 2
      bin/now-list.js

2
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})

Loading…
Cancel
Save