rxjs
rxjs copied to clipboard
feat: removed deprecated call pattern in find & findIndex
BREAKING CHANGE: find(predicate, thisArg)
call pattern is no longer available. Use find(predicate.bind(thisArg))
BREAKING CHANGE: findIndex(predicate, thisArg)
call pattern is no longer available. Use findIndex(predicate.bind(thisArg))
Related issue (if exists): #6367