aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/obj-proxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/scripts/lib/obj-proxy.js')
-rw-r--r--app/scripts/lib/obj-proxy.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/scripts/lib/obj-proxy.js b/app/scripts/lib/obj-proxy.js
deleted file mode 100644
index 29ca1269f..000000000
--- a/app/scripts/lib/obj-proxy.js
+++ /dev/null
@@ -1,19 +0,0 @@
-module.exports = function createObjectProxy(obj) {
- let target = obj
- const proxy = new Proxy({}, {
- get: (obj, name) => {
- // intercept setTarget
- if (name === 'setTarget') return setTarget
- return target[name]
- },
- set: (obj, name, value) => {
- target[name] = value
- return true
- },
- })
- return proxy
-
- function setTarget (obj) {
- target = obj
- }
-} \ No newline at end of file