input.js 74 B

1234567
  1. let obj = {
  2. a: 123,
  3. async foo(bar) {
  4. return await baz(bar);
  5. }
  6. }