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

6 lines
140 B
TypeScript
Raw Normal View History

2018-03-27 10:51:12 +03:00
import { toUnicode } from 'punycode';
export default host => {
return toUnicode(host).replace(/[A-Z]+/, match => match.toLowerCase());
};