Skip to content
Snippets Groups Projects
Commit 05d7734f authored by Briggs, Aaron Shane's avatar Briggs, Aaron Shane
Browse files

one more lint fix

parent f808668b
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,9 @@ export default function compound() {
return s.domain();
}));
var domain = [Math.min.apply(null, values), Math.max.apply(null, values)];
if (values[0] > values[1]) {domain = domain.slice().reverse();}
if (values[0] > values[1]) {
domain = domain.slice().reverse();
}
return domain;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment