Chris Feijoo

Results 18 issues of Chris Feijoo

I'm writing a little [Gulp Plugin for Flowgen](https://github.com/kube/gulp-flowgen), and I'm doing it in TypeScript. But as no definition file is provided, I'm stuck to ES5 CommonJS module syntax, and lose...

This idea seems interesting, and could be included in Monolite: https://stackoverflow.com/questions/61404324/modifying-tree-structured-data-in-javascript-with-given-condition

Nested `set` expressions are not transformed by the Babel Plugin: ```ts set( state, _ => _.nested.collection, arr => arr.map(item => set(item, _ => _.nested.prop, x => x + 1) )...

bug

Currently mapping a collection using `set` is quite verbose and ugly: ```ts // Current return set( response, _ => _.results, xs => xs.map(result => set( result, _ => _.poster_path, path...

enhancement

`deepEqual` performance needs to be enhanced by removing usage of `Object.getOwnPropertyNames` in `objectEqual` function.

performance

Would be cool to be able to use with Typescript and Browserify.

```ts merge( { a: { hello: "world", x: 4 }, b: 42 }, { a: { x: 42, y: 1337 } } ) // { a: { hello: "world", x:...

- `CMD` + click on a type should make editor jump and focus on definition. - `CMD` + click on a variable should make editor jump on its declaration. ***...

feature request