mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
util - add obj-proxy
This commit is contained in:
parent
e32d75965f
commit
7d50a56198
19
app/scripts/lib/obj-proxy.js
Normal file
19
app/scripts/lib/obj-proxy.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user