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

Function proxy

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

Source from the content-addressed store, hash-verified

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

Callers 3

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

Calls

no outgoing calls

Tested by

no test coverage detected