You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like the Rx = require("rx/dist/rx") (line 0) is pulling in a rx library without the reduce method.
Other files do Rx = require("rx/dist/rx") && require("rx/dist/rx.aggregates") which will pulls in the aggregate methods (reduce being one of them), and is probably why you are not seeing this error in your tests.
If you never get around to invoking those files that do the double-require, the rx.aggregate functionality is not there.
You might also want to update the README to add alias's for both "rx$" and "rx/dist/rx" path(s) to point to the consumer's preferred rx library.
The text was updated successfully, but these errors were encountered:
lib/response/CallResponse.js:229
Looks like the
Rx = require("rx/dist/rx")
(line 0) is pulling in a rx library without thereduce
method.Other files do
Rx = require("rx/dist/rx") && require("rx/dist/rx.aggregates")
which will pulls in the aggregate methods (reduce being one of them), and is probably why you are not seeing this error in your tests.If you never get around to invoking those files that do the double-require, the rx.aggregate functionality is not there.
You might also want to update the README to add alias's for both "rx$" and "rx/dist/rx" path(s) to point to the consumer's preferred rx library.
The text was updated successfully, but these errors were encountered: