(x: string)
| 2 | import { decodePunycode } from "./punycode"; |
| 3 | |
| 4 | const getPunycode = (x: string) => { |
| 5 | return new URL(`http://${x}.io`).hostname.slice(0, -3); |
| 6 | }; |
| 7 | |
| 8 | describe.concurrent("punycode - decode only", () => { |
| 9 | it.concurrent("basic", () => { |