mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-23 12:33:38 +00:00
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { toUnicode } from 'punycode';
|
|
|
|
export default (host: string) => {
|
|
if (host == null) return null;
|
|
return toUnicode(host).toLowerCase();
|
|
};
|