summaryrefslogtreecommitdiff
path: root/scripts/stats/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/stats/index.js')
-rw-r--r--scripts/stats/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/stats/index.js b/scripts/stats/index.js
index 42a58486d..2b81f7a8f 100644
--- a/scripts/stats/index.js
+++ b/scripts/stats/index.js
@@ -112,7 +112,7 @@ export async function run() {
`"${new Date().toISOString()}"`,
].join(',');
- const statCsv = readFileSync('scripts/stats/stats.csv', {encoding: 'utf-8'});
+ const statCsv = readFileSync('scripts/stats/stats.csv', { encoding: 'utf-8' });
const [statHeader, ...statItems] = statCsv.split('\n');
const updatedStatCsv = [statHeader, entry, ...statItems].join('\n');
writeFileSync('scripts/stats/stats.csv', updatedStatCsv);