Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
abordage committed Jun 2, 2022

Verified

This commit was signed with the committer’s verified signature. The key has expired.
spastorino Santiago Pastorino
1 parent 217cdad commit e71cc1b
Showing 3 changed files with 41 additions and 58 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

89 changes: 36 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -22,10 +22,10 @@ const summaryTable: any[] = [[{data: 'Action', header: true}, {data: 'Result', h
let range: string = DATE_RANGE;
if (!['last_7_days', 'last_30_days', 'last_6_months', 'last_year'].includes(range)) range = 'last_7_days';

let title: string = 'Latest';
if (range === 'last_7_days') title = 'Weekly';
if (range === 'last_30_days') title = 'Monthly';
title = title + ' statistics [update ' + updateDate + ']';
let title: string = 'latest';
if (range === 'last_7_days') title = 'weekly';
if (range === 'last_30_days') title = 'monthly';
title = 'My ' + title + ' stack [update ' + updateDate + ']';

(async () => {
/**

0 comments on commit e71cc1b

Please sign in to comment.