We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec34176 commit eece985Copy full SHA for eece985
1 file changed
test/unit/color/hsb.js
@@ -15,13 +15,6 @@
15
16
import HSBSpace from '../../../src/color/color_spaces/hsb.js';
17
18
-assert.arrayApproximately = function (arr1, arr2, delta, desc) {
19
- assert.equal(arr1.length, arr2.length);
20
- for (var i = 0; i < arr1.length; i++) {
21
- assert.approximately(arr1[i], arr2[i], delta, desc);
22
- }
23
-}
24
-
25
suite('color/HSB Color Space', function() {
26
const accuracy = 0.01;
27
0 commit comments