Ruben Dougall

Results 8 comments of Ruben Dougall

I think having an `isSubset` (and maybe `isSuperset`) function in Ramda would be a great idea, especially as Ramda already contains functions for common set operations such as `union`, `intersection`...

Yet another implementation would be to check whether the union equals `set`: ```javascript const sortU = R.pipe(R.uniq, R.sortBy(R.identity)); const isSubset = (subset, set) => R.equals(sortU(R.union(subset, set)), sortU(set)); ``` Another alternative...

@CrossEye Yeah, that would be great! I'll try to work on it over the next few days.

I seem to have a similar issue. Tried to get the directive working in a JHipster (Spring Boot + AngularJS) project, but no map is shown and the following is...

Oh ok, tried that and it works, thanks! 😃 Is the [documentation](http://tombatossals.github.io/angular-leaflet-directive/#!/examples/simple-map) incorrect then, as it says to just use `` for a simple map? (And for future reference, setting...

I was thinking this would be nice to have as well. Currently I'm returning an array of `Ani` objects from a method, which would be used as part of a...

@b-g Okay, awesome :) I wrote some code a few days ago but I've yet to test it.

> * The more important one is that we don't have proper code in place to handle them right now. @mcarlton00 Would you mind explaining this in more detail?