Evan Henley
Evan Henley
Found a way around this by opening chrome programmatically with the --proxy-server flag, which does not require changing system proxy settings. ```sh open -na "Google Chrome" --args --proxy-server=http://localhost:8500 ``` Leaving...
I think what you're going for is something like this? ``` javascript Array.prototype.reduce2 = function(combiner, initialValue) { var accumulatedValue = initialValue; if (this.length === 0) { return this; } if...
In the latest Windows 10, I was only able to reproduce this behavior after reverting to the previous version of the Microsoft Pinyin IME (Language Settings -> Chinese (Simplified, China)...
@martin-ro Exactly. It's how the data is stored in Firebase. It corresponds to how it's queried using the Firebase SDK, e.g. https://github.com/echenley/react-news/blob/master/src/js/actions/Actions.js#L12
@starInEcust @hitchcott You could manually define each chunk in the webpack config instead of using a regex? Something like: ``` js // change this to an array of files var...
The split happens at the module level, so you could make an extra module that re-exports the others, e.g.: ``` js // accountRoutes.js // this module will be the split...