Skip to main content
Module

x/uriware/tlds.ts

Yet another RFC3986-aware URI utilities.
Go to Latest
File
import { getAllDomains } from "https://deno.land/x/domain@v0.1.0/mod.ts"
const tlds = getAllDomains() .map(tld => tld.substring(1)) // .org -> org .sort((a, b) => b.length - a.length) // sort longer to shorter, as first match wins
export default tlds