Preview:```ts
declare function passString(s: string): Promise<void>
let exactTitle: string | undefined = undefined
async function done(): Promise<boolean> {
exactTitle ?? (await passString(exactTitle))
return true
}```
You can choose specific lines to embed by selecting them before copying the link.