From d1b0bcad28aa282a314dfe809c2525b0f26e63a7 Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Fri, 23 Feb 2024 10:17:59 +0100 Subject: [PATCH] refactor: unused export --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 7982ab8e..973639f0 100644 --- a/src/config.ts +++ b/src/config.ts @@ -14,7 +14,7 @@ export const defaultConfig = { const LOCALHOSTS = ['localhost', '127.0.0.1', '0.0.0.0'] const isLocal = (host: string) => LOCALHOSTS.indexOf(host) !== -1 -export const validateApiVersion = function validateApiVersion(apiVersion: string) { +function validateApiVersion(apiVersion: string) { if (apiVersion === '1' || apiVersion === 'X') { return }