rxjs icon indicating copy to clipboard operation
rxjs copied to clipboard

feat: removed deprecated call pattern in find & findIndex

Open demensky opened this issue 2 years ago • 0 comments

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

demensky avatar Jun 30 '22 13:06 demensky