Brad Compton (he/him)

Results 25 comments of Brad Compton (he/him)

It's likely that `clone` is copying all the mongoose cruft that gets attached to the records. Do you still have the extensive slowdown if you're doing a `lean` query?

Because the native String methods for JS don't do a good job for Unicode, there is some effort necessary to support it properly. [Runes](https://github.com/dotcypress/runes) is an example of a library...

Personally I like the names `at` and `argAt` for those functions...

Thanks for pointing this out @Maushundb ! It looks like the problem goes even deeper than just `applySpec`, `map` looks like it's broken too! https://goo.gl/1FJKkC

It looks like this is desired behavior for `map`, in that it dispatches to the `map` method of the second parameter if present. It seems like it would be very...

> it would be great if we could consider building it in Typescript directly. My gut is that this is a hard sell. I might be even less interested in...

> This is how it would look like (pseudo-code): ``` interface Map { (fn: (a: A) => B, list: A[]): B[] (fn: (a: A) => B): (list: A[]) => B[]...

It isn't just used in the codebase. `type` is a top level function on the public API. How is this being handled with the existing typings for Ramda that are...

I think in order to move forward this we would need to hammer out some practical concerns around this proposal. 1. Is there a way to ensure Javascript developers can...

Given @buzzdecafe's comments about supporting semigroups generally, vs. just lists, doesn't this function already exist for lists as `unnest`?