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
This is due to the use of concat with an ArrayLikeSequence inside unshift. One dirty way to fix it will be to use toArray() before concat. Although I think it should be wiser to refactor IndexedConcatenatedSequence in order to accept ArrayLikeSequence.
The text was updated successfully, but these errors were encountered:
b4nst
linked a pull request
Oct 8, 2018
that will
close
this issue
Code to reproduce
expected result:
true
actual result:
false
This is due to the use of
concat
with an ArrayLikeSequence insideunshift
. One dirty way to fix it will be to usetoArray()
before concat. Although I think it should be wiser to refactorIndexedConcatenatedSequence
in order to accept ArrayLikeSequence.The text was updated successfully, but these errors were encountered: