summaryrefslogtreecommitdiff
path: root/src/server/api/common/get-host-lower.ts
blob: fc4b30439ede2175961d24e5c8268a6043a6a519 (plain)
1
2
3
4
5
import { toUnicode } from 'punycode';

export default host => {
	return toUnicode(host).replace(/[A-Z]+/, match => match.toLowerCase());
};