Skip to content

Commit

Permalink
docs(readme): add "Other peculiar behaviors"
Browse files Browse the repository at this point in the history
  • Loading branch information
dwiyatci committed Oct 4, 2016
1 parent 9448b76 commit 1c71d6c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,10 @@ Known to be used in our project are:
- `_.first` -> `_.head`
- `_.invoke` -> `_.invokeMap`
- `_.rest` -> `_.tail`
- `_.max` -> `_.maxBy`
- `_.uniq` -> `_.uniqBy`

Other peculiar behaviors:
- `_.forEach(collection, iteratee, thisArg)` -> `_.forEach(collection, _.bind(iteratee, thisArg))`
- `_.first(collection, n)` -> `_.take(collection, n)`
- `_.memoize` ??

0 comments on commit 1c71d6c

Please sign in to comment.