@graph-paper/core
Advanced tools
Comparing version 0.0.0-alpha.8 to 0.0.0-alpha.9
{ | ||
"name": "@graph-paper/core", | ||
"version": "0.0.0-alpha.8", | ||
"version": "0.0.0-alpha.9", | ||
"description": "__DESCRIPTION_FORTHCOMING__", | ||
@@ -18,3 +18,3 @@ "author": "Hamilton Ulmer <hamilton.ulmer@gmail.com>", | ||
}, | ||
"gitHead": "14c3199c2aeb1491384327ddc8bdfffec9b4038d" | ||
"gitHead": "5c5e38919f758d4710cd4f145f66ddd7fdbb5670" | ||
} |
@@ -15,3 +15,4 @@ // taken from d3-array | ||
const mid = (lo + hi) >>> 1; // eslint-disable-line | ||
if (compare(+data[mid][key], value) < 0) lo = mid + 1; // eslint-disable-line | ||
// eslint-disable-next-line no-param-reassign | ||
if (compare(+data[mid][key], value) < 0) lo = mid + 1; | ||
else hi = mid; // eslint-disable-line | ||
@@ -18,0 +19,0 @@ } |
Sorry, the diff of this file is not supported yet
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
54728
14
1237