mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
23 lines
626 B
TypeScript
23 lines
626 B
TypeScript
// 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 viewportHeight () {
|
|
return Math.max(document.documentElement.clientHeight, window.innerHeight || 0)
|
|
}
|
|
|
|
export {
|
|
viewportHeight,
|
|
getParameterByName
|
|
}
|