Skip to content

Commit

Permalink
Verbiage
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed May 24, 2024
1 parent deb7f35 commit cc42815
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ Majority of functions should work exactly the same way, except below:
- `findLast` and `findLastIndex`
- Instead of iterating from the right side, iterables must start from left side
- Thus, with an iterable of 5 items, `predicate` will be called exactly 5 times
- In contrast, its counterpart in `Array` may be called 1-5 times
- In contrast, its counterpart in `Array` will be called between 1 and 5 times
- `includes` and `indexOf`
- `fromIndex` cannot be negative finite number. Infinites, zeroes, and positive numbers are supported
- `fromIndex` cannot be negative finite number
- Infinites, zeroes, and positive numbers are supported
- This could be implemented in an efficient way, we welcome pull requests

### Why not porting `Array.prototype.push`?
Expand Down

0 comments on commit cc42815

Please sign in to comment.