mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 18:46:50 +07:00
12 lines
No EOL
312 B
JavaScript
12 lines
No EOL
312 B
JavaScript
const fs = require('fs');
|
|
|
|
console.log(
|
|
JSON.stringify(
|
|
fs.readdirSync('./domains').map(f =>
|
|
[
|
|
f.split('.').slice(0, -1).join('.'), // subdomain
|
|
JSON.parse(fs.readFileSync(`./domains/${f}`, 'utf8')).owner.username // owner
|
|
]
|
|
)
|
|
)
|
|
); |