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.
25 lines
607 B
25 lines
607 B
9 years ago
|
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
|
||
|
}
|