summaryrefslogtreecommitdiffstats
path: root/node_modules/sift/changelog.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/sift/changelog.md')
-rw-r--r--node_modules/sift/changelog.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/node_modules/sift/changelog.md b/node_modules/sift/changelog.md
deleted file mode 100644
index ff230e8..0000000
--- a/node_modules/sift/changelog.md
+++ /dev/null
@@ -1,25 +0,0 @@
-### 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.