Simple Chat Room in NodeJS, expressJS and mongoDB in Docker Swarm
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.

26 lines
361 B

4 years ago
### 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.