kosich / rxjs-proxify

Turns a Stream of Objects into an Object of Streams
MIT License
35 stars 3 forks source link

Property should return same ref value #1

Closed kosich closed 3 years ago

kosich commented 3 years ago

Accessing proxified property should return the same reference === property each time

let o = of({ a: 42 });
let p = proxify(o);
assert(p.a === p.a);