mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 17:53:08 +02:00
5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
import { toUnicode } from 'punycode';
|
|
|
|
export default (host: string) => {
|
|
return toUnicode(host).toLowerCase();
|
|
};
|