Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Dec 3, 2022
1 parent bec0354 commit 208d057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function bin() {
var m = tz.length, a = 0, b = m;
while (tz[a] <= x0) ++a;
while (tz[b - 1] > x1) --b;
if (a || (b < m)) tz = tz.slice(a, b), m = b - a;
if (a || b < m) tz = tz.slice(a, b), m = b - a;

var bins = new Array(m + 1),
bin;
Expand Down

0 comments on commit 208d057

Please sign in to comment.