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

Function proxy

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

Source from the content-addressed store, hash-verified

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

Callers 3

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

Calls

no outgoing calls

Tested by

no test coverage detected