MCPcopy Create free account
hub / github.com/TruthHun/BookStack / proxy

Function proxy

static/vuejs/vue.runtime.common.js:2645–2653  ·  view source on GitHub ↗
(target, sourceKey, key)

Source from the content-addressed store, hash-verified

2643};
2644
2645function proxy (target, sourceKey, key) {
2646 sharedPropertyDefinition.get = function proxyGetter () {
2647 return this[sourceKey][key]
2648 };
2649 sharedPropertyDefinition.set = function proxySetter (val) {
2650 this[sourceKey][key] = val;
2651 };
2652 Object.defineProperty(target, key, sharedPropertyDefinition);
2653}
2654
2655function initState (vm) {
2656 vm._watchers = [];

Callers 3

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

Calls

no outgoing calls

Tested by

no test coverage detected