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
* master: (26 commits)
cleanup repository after release
3.0.0
cleanup repository after release
3.0.0-rc.0
fix link in changelog
update changelog
rename .skipValues() and friends to .ignoreValues()
reorder methods in docs
remove valuesToErrors from examples in docs
add link to 2.x version in deprecated-api-docs.md
update changelog
update changelog
add .takeErrors docs #150
move deprecated method docs to separate file
add deprecation warnings for 3.0 deprecations
make .flatten always return a stream (fixes#144)
remove emitEmpty option in .bufferWhileBy (fixes#131)
add .takeErrors (no docs yet) #150
remove deprecated methods (test)
remove deprecated methods (docs)
...
There is an inconsistency between two — one emits empty arrays by default other has option
emitEmpty
.Also perhaps a lot of options make it hard to understand how it works https://github.com/rpominov/kefir/pull/129#issuecomment-131449876
Related: #128 #129 #108
The
emitEmpty
option from.bufferWhileBy
removed, it now always emits[]
if necessary.Migration
(needed only if your code requires the array not to be empty)
foo.bufferWhileBy(bar)
foo.bufferWhileBy(bar).filter(x => x.length > 0)
The text was updated successfully, but these errors were encountered: