Guillaume ARM

Results 45 comments of Guillaume ARM

Nice, thanks for the link, I would need it on others projects too :-P

And #169

@Undistraction: Can we set milestone to **v2.8.0** for this issue ?

It's funny, I just started a thread about that : ramda/ramda#2440

another related ticket : ramda/ramda#2443

Nice idea, I so much long time declined to use `R.cond ` when I need `R.T`. I think `R.condDefault` will be useful for me.

Personally, I often write a `compactJoin` function for making my `webpack` or `rollup` configuration like this : ```js const configuration = { ..., plugins: compactJoin([ isProduction ? uglifyPlugin : undefined,...

Love `wrap` for creating pipelines ;-) But is it a good idea to name it `wrap` ? maybe wrapString ? for the others, names looks good to me.

Implementation is so easy to understand, this is brillant. By the way, I suggest to have a `replacementFunction` in second parameter, it allows to do a lot of stuff ;)

Love this one, it will replace all my `when pipelines` ;-) ```js pipe( when(predicate, doThis), when(predicate2, doThat), ... ) ```