Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TRADEOFFS.md #473

Merged
merged 1 commit into from
Jul 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions TRADEOFFS.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ __In addition__, these Just utilities, while lacking the additional features of
| just-merge (142b) | merge (4220b) | _e, f, g_ |
| just-clone (157b) | clonedeep (3360b) | _e, f, g_ |

_a._ In addition to a suffix arg, Lodash truncate accepts a separator expression, which when present is used as the truncation point.
_a._ In addition to a suffix arg, Lodash truncate accepts a separator expression, which when present is used as the truncation point.\
_b._ Lodash has a leading and trailing option, Just only has a leading option.\
_c._ Lodash cancels delayed calls.\
_d._ Lodash has a `flushed` method that can be applied to throttles/debounces.
_e._ Lodash can merge circular references\
_f._ Just only merges plain objects, regular arrays, functions and primitives. Lodash merges additional non-plain object types. \
_g._ Lodash treats sparse arrays as dense
_d._ Lodash has a `flushed` method that can be applied to throttles/debounces.\
_e._ Lodash can merge circular references.\
_f._ Just only merges plain objects, regular arrays, functions and primitives. Lodash merges additional non-plain object types.\
_g._ Lodash treats sparse arrays as dense.

## What's the deal with no dependencies anyway?

Expand Down