MCPcopy Index your code
hub / github.com/TruthHun/BookStack / proxy

Function proxy

static/vuejs/vue.js:2651–2659  ·  view source on GitHub ↗
(target, sourceKey, key)

Source from the content-addressed store, hash-verified

2649};
2650
2651function proxy (target, sourceKey, key) {
2652 sharedPropertyDefinition.get = function proxyGetter () {
2653 return this[sourceKey][key]
2654 };
2655 sharedPropertyDefinition.set = function proxySetter (val) {
2656 this[sourceKey][key] = val;
2657 };
2658 Object.defineProperty(target, key, sharedPropertyDefinition);
2659}
2660
2661function initState (vm) {
2662 vm._watchers = [];

Callers 3

loopFunction · 0.70
initDataFunction · 0.70
initProps$1Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected