json-subset
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "json-subset", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Determine whether one json object is a subset of another json object", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -5,3 +5,5 @@ ## json-subset | ||
uses a recursive depth-first-search algorithm to compare for equality across depth levels. | ||
Equality is checked using the `toString()` representation of each leaf node. Objects are recursively checked. | ||
NOTE: This can be very expensive for deep json objects. | ||
@@ -17,3 +19,3 @@ | ||
```javascript | ||
var subset = require('json-subset) | ||
var subset = require('json-subset') | ||
@@ -20,0 +22,0 @@ console.log(subset( |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3369
35