mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-01 22:56:43 -06:00
5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
import { toUnicode } from 'punycode';
|
|
|
|
export default (host: string) => {
|
|
return toUnicode(host).toLowerCase();
|
|
};
|