You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
607 B
24 lines
607 B
module.exports = ensnare
|
|
|
|
// creates a proxy object that calls cb everytime the obj's properties/fns are accessed
|
|
function ensnare(obj, cb){
|
|
var proxy = {}
|
|
Object.keys(obj).forEach(function(key){
|
|
var val = obj[key]
|
|
switch (typeof val) {
|
|
case 'function':
|
|
proxy[key] = function(){
|
|
cb()
|
|
val.apply(obj, arguments)
|
|
}
|
|
return
|
|
default:
|
|
Object.defineProperty(proxy, key, {
|
|
get: function(){ cb(); return obj[key] },
|
|
set: function(val){ cb(); return obj[key] = val },
|
|
})
|
|
return
|
|
}
|
|
})
|
|
return proxy
|
|
}
|
|
|