mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-02 03:32:51 +09: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();
|
|
};
|