Skip to content

Commit 620ead0

Browse files
committed
prettier
1 parent 84d9ece commit 620ead0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/interactions/brush.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,7 @@ function filterSignature2D(test, currentFx, currentFy) {
239239
: (x, y, fy) => (fy === undefined || fy === currentFy) && test(x, y)
240240
: currentFy === undefined
241241
? (x, y, fx) => (fx === undefined || fx === currentFx) && test(x, y)
242-
: (x, y, fx, fy) =>
243-
(fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(x, y);
242+
: (x, y, fx, fy) => (fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(x, y);
244243
}
245244

246245
function filterSignature1D(test, currentFx, currentFy) {
@@ -250,8 +249,7 @@ function filterSignature1D(test, currentFx, currentFy) {
250249
: (v, fy) => (fy === undefined || fy === currentFy) && test(v)
251250
: currentFy === undefined
252251
? (v, fx) => (fx === undefined || fx === currentFx) && test(v)
253-
: (v, fx, fy) =>
254-
(fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(v);
252+
: (v, fx, fy) => (fx === undefined || fx === currentFx) && (fy === undefined || fy === currentFy) && test(v);
255253
}
256254

257255
function intervalRound(interval, v) {

0 commit comments

Comments
 (0)