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

7 lines
148 B
TypeScript
Raw Normal View History

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