mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-04 14:03:27 +09:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import { toUnicode } from 'punycode';
|
|
|
|
export default host => {
|
|
return toUnicode(host).replace(/[A-Z]+/, match => match.toLowerCase());
|
|
};
|