diff options
Diffstat (limited to 'node_modules/sift/changelog.md')
-rw-r--r-- | node_modules/sift/changelog.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/node_modules/sift/changelog.md b/node_modules/sift/changelog.md new file mode 100644 index 0000000..ff230e8 --- /dev/null +++ b/node_modules/sift/changelog.md @@ -0,0 +1,25 @@ +### 7.0.0 + +- Remove global `*.use()` function. +- converted to ES6 + +### 3.3.x + +- `$in` now uses `toString()` when evaluating objects. Fixes #116. + +#### 2.x + +- `use()` now uses a different format: + +```javascript +sift.use({ + $operator: function(a) { + return function(b) { + // compare here + }; + } +}) +``` + +- all operators are traversable now +- fix #58. |