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 11bed44 commit c0c6001Copy full SHA for c0c6001
tests/baselines/reference/nullishCoalescingOperator1.js
@@ -67,7 +67,6 @@ else {
67
68
//// [nullishCoalescingOperator1.js]
69
"use strict";
70
-var _a;
71
var aa1 = a1 !== null && a1 !== void 0 ? a1 : 'whatever';
72
var aa2 = a2 !== null && a2 !== void 0 ? a2 : 'whatever';
73
var aa3 = a3 !== null && a3 !== void 0 ? a3 : 'whatever';
@@ -94,7 +93,7 @@ if (maybeBool !== null && maybeBool !== void 0 ? maybeBool : true) {
94
93
else {
95
foo();
96
}
97
-if ((_a = false) !== null && _a !== void 0 ? _a : true) {
+if (false !== null && false !== void 0 ? false : true) {
98
99
100
0 commit comments