Eli Perelman

Results 56 comments of Eli Perelman

I just pushed a patch version, could you try it again?

Sorry, it's the latest on npm, 3.1.4.

Yeah, the last line thing is not in the 3.x branch yet, but wanted to make sure the styling was showing up.

My biggest concern is making sure that the API is simple to consume, and project structure is easy to follow and implement. It seems like mego has a good start,...

@ccorcos sorry I haven't responded, been a little busy lately. I'm taking a look now.

I haven't dove into v11 elmish code yet, but just a quick question, in `update`: ``` js return { count: state.count + 1 } ``` Are you re-creating the state,...

In other words, can you evolve the state from `update` outside your component bounds?

``` js h('button.dec', {onClick: dispatch('dec')}, '-') ``` So, this `dispatch` is different than the standard Redux `dispatch`, does it return a function that dispatches the action? e.g.?: ``` js //...

Why drop methods that exist in ES5 because they have the same functionality? The point of having a different implementation is to introduce composability of methods, which cannot elegantly be...

The problem with underscore/lodash is that it's own core methods are not composable, notably because they don't follow the function-first/data-last paradigm.