Yuki Kodama

Results 19 comments of Yuki Kodama

@keremciu Hmm... my understanding of redux-immutable-state-invariant is that detects mutations in reducers and/or other places. Do you mean that it doesn't work? or redux-tooltip mutates something in a wrong way?...

@gtoma4 Thanks for working on this issue! First of all, I have to say that your use-case ( contains ) is unexpected usage. Overriding `onMouseEnter` property and passing an element...

@gtoma4 Sorry, now I don't have enough time to review this and other your issues immediately. Please wait.

@p0o I could also find `_hostNode: [CIRCULAR]` in [simple example demo](http://kuy.github.io/redux-tooltip/simple.html). But I think it's difficult to avoid `Uncaught TypeError: Converting circular structure to JSON` error by fixing redux-tooltip because...

@zalmoxisus Thanks for helping! Redux DevTools Extension v3 looks smart. @p0o I assumed you just want to see the state by using `JSON.stringify` in somewhere of your code. But if...

I didn't know overwriting `JSON.stringify` by `toJSON`. Awesome tips! Thanks @zalmoxisus. @p0o Yeah, I'd like to add `toJSON` function to our actions only if `NODE_ENV=development` by default. I assume most...

Yes, so I need to call a function and check a return value. If a function is a stateless functional component, it may return ReactElement. If not so, it's a...

I have to prepare automated test for first release.

I noticed that I can also use `is-generator` module to determine the value is a generator function or a normal function. `typeof value.prototype.isReactComponent === 'undefined' && !isGeneratorFunction(value)` is a stateless...

Removing regenerator is good for debugging. If we do so, IE11 will be dropped. This is difficult decision for me... I mentioned on Twitter that I started a new project...