mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 13:09:07 +01:00
6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
import { toUnicode } from 'punycode';
|
|
|
|
export default (host: string) => {
|
|
return toUnicode(host).toLowerCase();
|
|
};
|