ml-array-xy-max-y
Advanced tools
Comparing version 0.2.6 to 0.2.7
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.2.7](https://github.com/mljs/array-xy/compare/ml-array-xy-max-y@0.2.6...ml-array-xy-max-y@0.2.7) (2019-05-03) | ||
**Note:** Version bump only for package ml-array-xy-max-y | ||
## [0.2.6](https://github.com/mljs/array-xy/compare/ml-array-xy-max-y@0.2.5...ml-array-xy-max-y@0.2.6) (2019-04-17) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "ml-array-xy-max-y", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "Find the maximum ordinate value in a range of abscissas of a {x:[], y:[]}", | ||
@@ -26,3 +26,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "2e3a70a124b1e55c42b4e1444742790cdbca4edc" | ||
"gitHead": "1321c2b63d8d201d6242bdcbfdb7b7bdfc0e719a" | ||
} |
@@ -9,3 +9,3 @@ import maxY from '..'; | ||
}; | ||
expect(maxY(points)).toEqual({ | ||
expect(maxY(points)).toStrictEqual({ | ||
index: 1, | ||
@@ -25,3 +25,3 @@ value: 8 | ||
}; | ||
expect(maxY(points, options)).toEqual({ | ||
expect(maxY(points, options)).toStrictEqual({ | ||
index: 2, | ||
@@ -41,3 +41,3 @@ value: 8 | ||
}; | ||
expect(maxY(points, options)).toEqual({ | ||
expect(maxY(points, options)).toStrictEqual({ | ||
index: 2, | ||
@@ -57,3 +57,3 @@ value: 8 | ||
}; | ||
expect(maxY(points, options)).toEqual({ | ||
expect(maxY(points, options)).toStrictEqual({ | ||
index: 2, | ||
@@ -74,3 +74,3 @@ value: 8 | ||
}; | ||
expect(maxY(points, options)).toEqual({ | ||
expect(maxY(points, options)).toStrictEqual({ | ||
index: 2, | ||
@@ -77,0 +77,0 @@ value: 8 |
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
9394