From feb5e30a98d451c89d4e0603c6503cf878f4a9d9 Mon Sep 17 00:00:00 2001 From: Matt Mckenzie Date: Tue, 18 Sep 2018 09:45:40 +0100 Subject: [PATCH] added get replacement for the soon to be deprecated 'object' --- src/forest-common.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/forest-common.jsx b/src/forest-common.jsx index 7533065..303463c 100644 --- a/src/forest-common.jsx +++ b/src/forest-common.jsx @@ -192,6 +192,10 @@ class ForestCommon extends Component { return core.object(this.UID, path, match); } + get(path, match) { + return core.object(this.UID, path, match); + } + notify(){ if(this.mounted) this.setState({}); }