diff options
Diffstat (limited to 'src/api/common/get-host-lower.ts')
| -rw-r--r-- | src/api/common/get-host-lower.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/api/common/get-host-lower.ts b/src/api/common/get-host-lower.ts deleted file mode 100644 index fc4b30439e..0000000000 --- a/src/api/common/get-host-lower.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { toUnicode } from 'punycode'; - -export default host => { - return toUnicode(host).replace(/[A-Z]+/, match => match.toLowerCase()); -}; |