Remove unused function

pull/4461/head
Chocobozzz 2021-10-11 12:00:29 +02:00
parent bdb1dfc176
commit 0fe87dc5a1
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 0 additions and 15 deletions

View File

@ -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