Skip to content

Commit 5f401da

Browse files
committed
Fix lint warnings.
1 parent 763e78d commit 5f401da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ namespace ts {
448448
* are not present in `arrayA` but are present in `arrayB`. Assumes both arrays are sorted
449449
* based on the provided comparer.
450450
*/
451-
export function relativeComplement<T>(arrayA: T[] | undefined, arrayB: T[] | undefined, comparer: (x: T, y: T) => Comparison = compareValues, offsetA: number = 0, offsetB: number = 0): T[] | undefined {
451+
export function relativeComplement<T>(arrayA: T[] | undefined, arrayB: T[] | undefined, comparer: (x: T, y: T) => Comparison = compareValues, offsetA = 0, offsetB = 0): T[] | undefined {
452452
if (!arrayB || !arrayA || arrayB.length === 0 || arrayA.length === 0) return arrayB;
453453
const result: T[] = [];
454454
outer: for (; offsetB < arrayB.length; offsetB++) {

0 commit comments

Comments
 (0)