Jeremy Judeaux
Jeremy Judeaux
> Why does cancel token have to be anything other than an observable or a promise? I'm not sure for Observables, but it is not possible to inspect the state...
I had a similar issue with a lib having a `normalize.styl` which is inappropriately imported by nib. Fixed it for my project at F4-Group/nib@9cfa2fa24685259c8004d90a5e9d5565cdf8af7a
I don't think there is a point in saving the "current", if you want to call it during rendering, just save it in advance out of the hook: ``` const...
> It is convenient to use :: for method access I'm not a fan of `::` to access methods, as there are other ways to access a method. How will...
@InvictusMB I'm not really pulling the `[]` operator. Having the "*this* pipelining operator" doing method resolution is already part of the discussion. I'm just pointing out that, with the current...
Two cases I think may not work with the per-scope implementation: ```js const obj = { a() {}, b() {} ); const a = ::obj.a; obj.a = obj.b; const b...