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

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