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