MCPcopy
hub / github.com/fanmingming/live / proxy

Function proxy

m3u8/vue.js:4618–4626  ·  view source on GitHub ↗
(target, sourceKey, key)

Source from the content-addressed store, hash-verified

4616 };
4617
4618 function proxy (target, sourceKey, key) {
4619 sharedPropertyDefinition.get = function proxyGetter () {
4620 return this[sourceKey][key]
4621 };
4622 sharedPropertyDefinition.set = function proxySetter (val) {
4623 this[sourceKey][key] = val;
4624 };
4625 Object.defineProperty(target, key, sharedPropertyDefinition);
4626 }
4627
4628 function initState (vm) {
4629 vm._watchers = [];

Callers 3

loopFunction · 0.85
initDataFunction · 0.85
initProps$1Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected