Skip to content

Commit 415f6fd

Browse files
committed
Correct strings based on linting rules
1 parent 98ac4e4 commit 415f6fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10034,7 +10034,7 @@ namespace ts {
1003410034
}
1003510035

1003610036
function isInfinityOrNaNString(name: string) : boolean {
10037-
return name === 'Infinity' || name === '-Infinity' || name === 'NaN';
10037+
return name === "Infinity" || name === "-Infinity" || name === "NaN";
1003810038
}
1003910039

1004010040
function isNumericLiteralName(name: string) {

0 commit comments

Comments
 (0)