paricafe/src/server/api/common/get-host-lower.ts

7 lines
148 B
TypeScript
Raw Normal View History

2018-03-27 02:51:12 -05:00
import { toUnicode } from 'punycode';
2018-06-17 19:54:53 -05:00
export default (host: string) => {
2018-11-11 03:26:09 -06:00
if (host == null) return null;
return toUnicode(host).toLowerCase();
2018-03-27 02:51:12 -05:00
};