Craig Condon
Craig Condon
Looking at my code, the only reason why `false` should be returned is if you modify a collection with a filter. For example: ``` javascript var fiddler = fiddle({$inc:{age:1}}, {name:'Craig'});...
I think it makes sense to return false if no objects have been modified, so I added it. By the looks of it, there are only a few operations where...
Thanks for the catch. I'll take a take a look at this in a few days.
Glad you like it! Do you have an example how you'd like to see this implemented in Sift?
This library hasn't been updated in a few years. Gonna revamp it here in a bit with newer APIs, tests, etc.
Node _should_ exit if you pass a command into celeri. Make sure you're not calling `celeri.open()` anywhere in your code - it's basically a wrapper for `process.openStdin()`. If you're not...
I'd approach it a different way. Instead, perhaps create an `interactive` command. For example: ``` javascript var celeri = require("celeri"); celeri.onCommand("interact", function(data) { celeri.open(); }); celeri.parse(process.argv); ``` In terminal, you...
Should be fixed, thanks.
I think generally it'd be good practice for me to start using Array.isArray versus `value instanceof Array` for this very reason. Made note of it. Thanks for pointing it out.