mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
14 lines
440 B
JavaScript
14 lines
440 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);
|
|
}
|