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);