Skip to content

Commit 8703e3c

Browse files
committed
Fix self-check (hmm?)
1 parent 08a34e1 commit 8703e3c

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
@@ -2169,7 +2169,7 @@ export function equateStringsCaseSensitive(a: string, b: string) {
21692169

21702170
function compareComparableValues(a: string | undefined, b: string | undefined): Comparison;
21712171
function compareComparableValues(a: number | undefined, b: number | undefined): Comparison;
2172-
function compareComparableValues(a: string | number | undefined, b: string | number | undefined) {
2172+
function compareComparableValues(a: any, b: any) {
21732173
return a === b ? Comparison.EqualTo :
21742174
a === undefined ? Comparison.LessThan :
21752175
b === undefined ? Comparison.GreaterThan :

0 commit comments

Comments
 (0)