And the most vile and offensive text written in this file is this piece of inefficient “reduce”:
export const reservedSubdomains: Record
...atpSpecific,
...commonlyReserved,
...famousAccounts,
...slurs,
].reduce((acc, cur) => {
return {
...acc,
[cur]: true,
}
}, {})
Why not use “Object.fromEntries(…)”??