kosich / rxjs-proxify

Turns a Stream of Objects into an Object of Streams

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proxy on undefined is interpreted as callable

kosich opened this issue · comments

Seems like Observable<undefined> type is interpreted as callable (ICallableProxy), which provides Function.prototype props:

Screenshot 2021-06-14 at 18 05 46

let o = of<{ a: undefined }>({ a: undefined });
let p = proxify(o);
p.a.call()