christ182

Results 3 comments of christ182

The loop in stateParams.js kept adding the word 'chunk' in parentParamsKeys. (node_modules/@uirouter/core/lib-esm/params/stateParams.js) I don't know what causes that, but I changed the loop from ``` for (let j in parentParamsKeys)...

@wawyed Object.keys is working as expected. It's the loop that does not behave properly.

I found the reason for mine. ``` Array.prototype.chunk = function(n) { if (!this.length) { return []; } return [this.slice(0, n)].concat( this.slice(n).chunk(n) ); } ``` `for(var i in parents)` must include...