Releases: typicode/lodash-id
Releases · typicode/lodash-id
v0.14.0
Removes localStorage
and file
functions from lodash-id
as they are provided by lowdb.
Alternatively, it should be easy to write code to persist data or use libraries since data structures are simple arrays and objects.
v0.12.0
underscore-db
now normalizes id, so you can use an integer or string to find, update, remove, ... an item.
_.getById(posts, 1) === _.getById(posts, '1')
v0.8.1
- Update
insert
to keep objects order in case of replacement
v0.8.0
- Rename project from
underscore.db
to underscore-db
insert
replaces now docs with same id
v0.7.0
- Remove
mixWith
, use simply _.mixin
v0.6.0
- Faster
_.insert
- Add
_.id
property
v0.4.0
Fix Lo-Dash support in Node
v0.2.0
- Faster inserts
- Add
updateWhere