changelog.md
361 Bytes
7.0.0
- Remove global
*.use()
function. - converted to ES6
3.3.x
-
$in
now usestoString()
when evaluating objects. Fixes #116.
2.x
-
use()
now uses a different format:
sift.use({
$operator: function(a) {
return function(b) {
// compare here
};
}
})
- all operators are traversable now
- fix #58.