We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a34e1 commit 8703e3cCopy full SHA for 8703e3c
src/compiler/core.ts
@@ -2169,7 +2169,7 @@ export function equateStringsCaseSensitive(a: string, b: string) {
2169
2170
function compareComparableValues(a: string | undefined, b: string | undefined): Comparison;
2171
function compareComparableValues(a: number | undefined, b: number | undefined): Comparison;
2172
-function compareComparableValues(a: string | number | undefined, b: string | number | undefined) {
+function compareComparableValues(a: any, b: any) {
2173
return a === b ? Comparison.EqualTo :
2174
a === undefined ? Comparison.LessThan :
2175
b === undefined ? Comparison.GreaterThan :
0 commit comments