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