Love the library idea. Boundary case!
Doesn't handle {$ne: null} properly.
const data = [{prop: null}, {prop: 'hi'}]
const f = new Faltu(data)
console.log(f.find({prop: {$ne: null}}).get().length)
// logs 0
I believe it's this line, not sure:
https://github.com/moinism/faltu/blob/master/src/faltu.js#L101
Is there another recommended way to check for a property not equaling null?
Love the library idea. Boundary case!
Doesn't handle
{$ne: null}properly.I believe it's this line, not sure:
https://github.com/moinism/faltu/blob/master/src/faltu.js#L101
Is there another recommended way to check for a property not equaling null?