prettier/tests/async/conditional-expression.js

15 lines
326 B
JavaScript

async function f() {
const result = typeof fn === 'function' ? await fn() : null;
}
(async function() {
console.log(
await (true ? Promise.resolve("A") : Promise.resolve("B"))
);
})()
async function f() {
await (spellcheck && spellcheck.setChecking(false));
await spellcheck && spellcheck.setChecking(false)
}