mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
16 lines
520 B
JavaScript
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
|