ixfx
    Preparing search index...

    Function objectProxySymbol

    • Same as proxy, but the return value is the proxied object along with the Reactive wrapped as symbol property.

      const person = Rx.fromProxySymbol({name: `marie` });
      person.name = `blah`;
      person[Rx.symbol].on(msg => {
      // Value changed...
      });

      This means of access can be useful as the return result is a bit neater, being a single object instead of two.

      Type Parameters

      • Vextendsobject

      Parameters

      • target: V

      Returns ReactiveProxied<V>