Files
bun.sh/test/snapshots/optional-chain-with-function.debug.js
2022-06-22 23:21:48 -07:00

16 lines
520 B
JavaScript

export function test() {
try {
const multipleSecondaryValues = undefined;
const ratings = ["123"];
var bar = multipleSecondaryValues?.map((value) => false);
bar = bar?.multipleSecondaryValues?.map((value) => false);
bar = bar?.bar?.multipleSecondaryValues?.map((value) => false);
bar = {}?.bar?.multipleSecondaryValues?.map((value) => false);
} catch (e) {
throw e;
}
return testDone(import.meta.url);
}
//# sourceMappingURL=http://localhost:8080/optional-chain-with-function.js.map