is-subset icon indicating copy to clipboard operation
is-subset copied to clipboard

Check if an object is contained within another one

Results 7 is-subset issues
Sort by recently updated
recently updated
newest added

``` let superset = { shoes: [41, 42] } let subset = { shoes: [] } isSubset(superset, subset) I think this should return false.

It returns false on the following case, where it should've been true. SUPERSET: [ { id: 1, short_name: 'apple', long_name: 'pen pinapple apple pen', picture_urls: [ 'fake url 1a', 'fake...

Would it be possible to get a flag or variant of this which doesn't work recursively? Specifically, from the examples in the README, the following to be `false`, not `true`:...

When using [pkg](https://github.com/zeit/pkg) the files section of is-subset causes the packaging process to attempt a crawl over the root directory. This obviously breaks with permissions issues. This PR replaces the...

Isparta doesn’t do the job: https://travis-ci.org/studio-b12/is-subset/jobs/83377581. We should measure coverage with the proven _istanbul_ on the transpiled code like we do in https://github.com/studio-b12/tape-css.

There seems to be some disagreement in the community as to where data should land. 1. [Some](https://github.com/1-liners/1-liners) [say](https://github.com/ramda/ramda) data should come last. [Not without reason.](https://github.com/dominictarr/curry) 2. There’s a new [function...