mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 20:58:07 +01:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
|
import punycode from 'punycode';
|
||
|
|
||
|
const IDNA_PREFIX = 'xn--';
|
||
|
|
||
|
export const decode = domain => {
|
||
|
return domain
|
||
|
.split('.')
|
||
|
.map(part => part.indexOf(IDNA_PREFIX) === 0 ? punycode.decode(part.slice(IDNA_PREFIX.length)) : part)
|
||
|
.join('.');
|
||
|
};
|