Skip to content

Commit d3b3fcd

Browse files
committed
lint
1 parent 392ea80 commit d3b3fcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/trace-mapping/src/by-source.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function buildBySources(
2828
const sourceLine = seg[SOURCE_LINE];
2929
const sourceColumn = seg[SOURCE_COLUMN];
3030

31-
todo[sourceIndex] ||=[];
31+
todo[sourceIndex] ||= [];
3232
(todo[sourceIndex][sourceLine] ||= []).push([sourceColumn, i, seg[COLUMN]]);
3333
}
3434
}
@@ -102,8 +102,8 @@ function jointArray<T>(a: T[], b: T[], bOffset: number): T[] {
102102
const index = typeof p === 'symbol' ? NaN : parseInt(p, 10);
103103
if (isNaN(index)) return (a as any)[p];
104104
return index < a.length ? a[index] : b[index - bOffset];
105-
}
106-
})
105+
},
106+
});
107107
}
108108

109109
function insert<T>(array: T[], index: number, value: T) {

0 commit comments

Comments
 (0)