Geoff Dutton
Geoff Dutton
I was doing a stack of events, and it appears to be more efficient to pass an array of events, and then pipeline all event data as well.
I'm proposing this unit testing setup which replaces Ava and NYC with Jest. I'm proposing Jest over Ava/NYC due to the mocking features and built in coverage. Jest also supports...
**Is your feature request related to a problem? Please describe.** When I'm developing, I am able to commit code that does not conform to the Prettier syntax style. **Describe the...
I noticed when I inspect the global page and run `window.location.reload()`, it's as though all the tabs lose reference to the background page. So one idea would be to reload...
Potential fix for #1 (if #1 is even an issue). Is this the intended behavior? If any one of the Item callbacks rejects, it should quit?
Given an `item` callback like: ```javascript Q.item( item => new Promise((resolve, reject) => { someOtherService((error, result) => { error ? reject(error) : resolve(result) }) }) ) ``` If `someOtherService` results...