diff --git a/src/utils/query-params/get-query-params.ts b/src/utils/query-params/get-query-params.ts deleted file mode 100644 index 04b72a8..0000000 --- a/src/utils/query-params/get-query-params.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { URLSearchParams } from 'node:url' - -export const getQueryParams = (url: string): URLSearchParams => { - const queryParams = url.split('?')[1] - const query = new URLSearchParams(queryParams) - - return query -}