async function go(){return await (await import("node-fetch"))(("https://api.ipify.org").then(e=>e.text()))}
go()
async function go(){return await fetch("https://api.ipify.org").then(e=>e.text())}
go()
async function go(){return await fetch(“api.ipify.org”).then(e=>e.text())}
go()
SyntaxError: await is only valid in async functions and the top level bodies of modules