mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-12-18 04:44:27 +00:00
5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
import { toUnicode } from 'punycode';
|
|
|
|
export default (host: string) => {
|
|
return toUnicode(host).toLowerCase();
|
|
};
|