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 521a00a commit 82251a3Copy full SHA for 82251a3
src/compiler/emitter.ts
@@ -1358,7 +1358,7 @@ export function createOrReusePrinter(o: ReusablePrinterOptions = {}) {
1358
+ keyNum(o.target)
1359
+ keyNum(o.newLine);
1360
let printer = printerCache.get(key);
1361
- if (!printer) {
+ if (printer === undefined) {
1362
printerCache.set(key, printer = createPrinter(o));
1363
}
1364
return printer;
0 commit comments