We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47daf86 commit 9f14fdfCopy full SHA for 9f14fdf
2 files changed
CHANGES.md
@@ -1,5 +1,9 @@
1
# Changelog #
2
3
+## Version 2.2 ##
4
+
5
+- Fix recursion error on ignore operator
6
7
## Version 2.1 ##
8
9
- Make seed optional for `reduce`
src/beicon/v2.cljs
@@ -559,7 +559,7 @@
559
"Ignores all elements in an observable sequence leaving only the
560
termination messages."
561
[ob]
562
- (pipe (ignore) ob))
+ (pipe (ops/ignore) ob))
563
564
(defn finalize
565
"Returns an Observable that mirrors the source Observable, but will
0 commit comments