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

export default (host: string) => {
	return toUnicode(host).toLowerCase();
};