optional-chaining-support.js 85 B

1234567
  1. function test() {
  2. const foo = {
  3. bar: () => {}
  4. };
  5. foo?.bar?.();
  6. }