From 0fe87dc5a1c37d98740bf012e5bac09a21862a89 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 11 Oct 2021 12:00:29 +0200 Subject: Remove unused function --- client/src/app/helpers/utils/url.ts | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'client') diff --git a/client/src/app/helpers/utils/url.ts b/client/src/app/helpers/utils/url.ts index 82d9cc11b..b3cded8f4 100644 --- a/client/src/app/helpers/utils/url.ts +++ b/client/src/app/helpers/utils/url.ts @@ -1,19 +1,5 @@ import { environment } from '../../../environments/environment' -// Thanks: https://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript -function getParameterByName (name: string, url: string) { - if (!url) url = window.location.href - name = name.replace(/[[\]]/g, '\\$&') - - const regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)') - const results = regex.exec(url) - - if (!results) return null - if (!results[2]) return '' - - return decodeURIComponent(results[2].replace(/\+/g, ' ')) -} - function getAbsoluteAPIUrl () { let absoluteAPIUrl = environment.hmr === true ? 'http://localhost:9000' @@ -64,7 +50,6 @@ function objectToFormData (obj: any, form?: FormData, namespace?: string) { } export { - getParameterByName, objectToFormData, getAbsoluteAPIUrl, getAbsoluteEmbedUrl -- cgit v1.2.3