Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const uuid = _ => 'xxx_xxx_00_00'.replace(/x|0/g, v => v === 'x' ? String.fromCharCode(Math.floor(Math.random() * 26) + 97) : Math.floor(Math.random() * 10)) console.log(uuid());
PS D:\bat> node gg.js lcn_ljo_13_77
const fs = require('fs') const uuid = _ => 'xxx_xxx_00_00'.replace(/x|0/g, v => v === 'x' ? String.fromCharCode(Math.floor(Math.random() * 26) + 97) : Math.floor(Math.random() * 10)) fs.appendFileSync('code.log', `${uuid()}\n`);
node gg.js > file.txt