blob: 841c8a5848dbc32049508fd491937a652db255f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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);
}
|