mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 18:03:09 +02: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());
|
||
|
};
|