Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/OC/get_set.js')
-rw-r--r--core/src/OC/get_set.js12
1 files changed, 4 insertions, 8 deletions
diff --git a/core/src/OC/get_set.js b/core/src/OC/get_set.js
index b4dcd563eff..e5d5bd5c5fd 100644
--- a/core/src/OC/get_set.js
+++ b/core/src/OC/get_set.js
@@ -1,7 +1,8 @@
/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
*
- * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
+ * @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
*
@@ -16,15 +17,10 @@
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
-/**
- * Get a variable by name
- * @param {string} context context
- * @returns {Function} getter
- * @deprecated 19.0.0 use https://lodash.com/docs#get
- */
export const get = context => name => {
const namespaces = name.split('.')
const tail = namespaces.pop()