@humanwhocodes/ordered-set
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "@humanwhocodes/ordered-set", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A set whose items can be traversed in order", | ||
@@ -35,2 +35,2 @@ "main": "src/ordered-set.js", | ||
} | ||
} | ||
} |
@@ -60,3 +60,3 @@ # Ordered Set | ||
// find the previous value matching this function | ||
const value2 = set.findNext(value => value > 1, 3); | ||
const value2 = set.findPrevious(value => value > 1, 3); | ||
@@ -63,0 +63,0 @@ // remove a value |
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
23372