Skip to content

Commit 68cb34d

Browse files
🎨 style(blossom): Use arrow notation.
1 parent fb52212 commit 68cb34d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/blossom/blossom.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export default function blossom(CHECK_OPTIMUM, CHECK_DELTA) {
185185
// Assign label t to the top-level blossom containing vertex w
186186
// and record the fact that w was reached through the edge with
187187
// remote endpoint p.
188-
const assignLabel = function (w, t, p) {
188+
const assignLabel = (w, t, p) => {
189189
console.debug('DEBUG: assignLabel(' + w + ',' + t + ',' + p + ')');
190190
const b = inblossom[w];
191191
assert(label[w] === 0 && label[b] === 0);

0 commit comments

Comments
 (0)