-
-
Notifications
You must be signed in to change notification settings - Fork 394
Open
Labels
questionDocumentation is not good enough.Documentation is not good enough.
Description
Hi again :)
Observables aren't working as expected. In particular, I've a TC39 implementation of Observables which is not being interpreted correctly.
The problem would seem to be the isObservable function, which adds this to jss:
var symbolObservable = lib;
var isObservable = (function (value) {
return value && value[symbolObservable] && value === value[symbolObservable]();
});Here's some command line output that's illuminating:
>>> Symbol.observable === symbolObservable
false
>>> symbolObservable.default === Symbol.observable
trueIt's possible there's some weird things going on with the build process on my end (perhaps I need some webpack-commonjs bridge), but I didn't see any tests in jss that demonstrate the use of Symbol.observable proper, so I can't easily eliminate the possibility that it's a jss issue.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionDocumentation is not good enough.Documentation is not good enough.