1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-29 05:58:22 +09:00
cherrypick/src/server/api/common/get-host-lower.ts
2018-11-11 18:26:09 +09:00

7 lines
148 B
TypeScript

import { toUnicode } from 'punycode';
export default (host: string) => {
if (host == null) return null;
return toUnicode(host).toLowerCase();
};