Remove unused function
This commit is contained in:
parent
bdb1dfc176
commit
0fe87dc5a1
|
@ -1,19 +1,5 @@
|
||||||
import { environment } from '../../../environments/environment'
|
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 () {
|
function getAbsoluteAPIUrl () {
|
||||||
let absoluteAPIUrl = environment.hmr === true
|
let absoluteAPIUrl = environment.hmr === true
|
||||||
? 'http://localhost:9000'
|
? 'http://localhost:9000'
|
||||||
|
@ -64,7 +50,6 @@ function objectToFormData (obj: any, form?: FormData, namespace?: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
getParameterByName,
|
|
||||||
objectToFormData,
|
objectToFormData,
|
||||||
getAbsoluteAPIUrl,
|
getAbsoluteAPIUrl,
|
||||||
getAbsoluteEmbedUrl
|
getAbsoluteEmbedUrl
|
||||||
|
|
Loading…
Reference in New Issue