mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 15:56:43 -06: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());
|
||
|
};
|