Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

changelog.md 361B

12345678910111213141516171819202122232425
  1. ### 7.0.0
  2. - Remove global `*.use()` function.
  3. - converted to ES6
  4. ### 3.3.x
  5. - `$in` now uses `toString()` when evaluating objects. Fixes #116.
  6. #### 2.x
  7. - `use()` now uses a different format:
  8. ```javascript
  9. sift.use({
  10. $operator: function(a) {
  11. return function(b) {
  12. // compare here
  13. };
  14. }
  15. })
  16. ```
  17. - all operators are traversable now
  18. - fix #58.