2020-07-15 22:48:08 +02:00

9 lines
103 B
JavaScript

const x = async ( // some comment
a) => {
return foo(await a);
};
function foo(a) {
return a;
}