mirror of
https://github.com/nextcloud/server.git
synced 2026-06-27 17:40:37 -04:00
11 lines
358 B
JavaScript
11 lines
358 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
/**
|
|
* @param {any} name -
|
|
*/
|
|
export default function getURLParameter(name) {
|
|
return decodeURIComponent((new RegExp(`[?|&]${name}=([^&;]+?)(&|#|;|$)`).exec(location.search) || [undefined, ''])[1].replace(/\+/g, '%20')) || ''
|
|
}
|