mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-06-15 02:34:49 -04:00
wip
This commit is contained in:
parent
f2bf1e3f9f
commit
83b9c0dec5
14 changed files with 322 additions and 499 deletions
4
checks.js
Normal file
4
checks.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
// npx nodemon checks.js
|
||||
const fs= require('fs')
|
||||
const english = JSON.parse(fs.readFileSync('./src/i18n/en.json'))
|
||||
console.log(Object.entries(english).sort((a,b)=>a[1].length-b[1].length).slice(-10,-1).map(([k,v])=>k+'\n'+k.split('').map(c=>'=').join('')+'\n\n'+v).join('\n\n'))
|
Loading…
Add table
Add a link
Reference in a new issue