David Bushong
David Bushong
Two concerns: 1. this doesn't map to functionality in async.js's `parallel()` call 2. why would someone want this instead of just `Q.all()` ?
If you have ES6 promises, you have [Promise.all](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all) If you really think this'll be useful, I'm fine with it; please update the READMEs also to mention the new functionality
LGTM; one suggested simplification - btw, FFR if you really don't want to use a lib and need to execute things in series you can use reduce: ``` javascript promiseForSeries...
Don't forget to run `make` when you're done
Out of curiosity, why would you want to use `detectSeries` with a non-async iterator? Isn't that just the same as Array.prototype.find? (I agree it should be fixed for consistency; I'm...
`-q` will only show errors
Yeah, lemme see if I can find my work thus far and stick it somewhere.
https://github.com/groupon/cson-parser/blob/dpb-native-parser/src/cson.pegjs There's what I've got thus far. The issues I ran into were, unsurprisingly, around corner cases in object tree parsing. In certain cases (I'll try to dig up a...
I believe CSON accepts `"..."` or `'...'`, so you should be able to say `foo: "this 'and' that"` You also should be able to `\` things, so even `foo: 'this...
This thread is about defining a spec that *could* be parsed with a PEG grammar. I started and abandoned defining this a while back, but currently the spec is "what...