DOMException: Document is not focused. getClipboardContents @ VM7894:6 async function (async) getClipboardContents @ VM7894:3 (anonymous) @ VM7916:1 code example
Example: async await
const data = async () => {
const got = await fetch('https://jsonplaceholder.typicode.com/todos/1');
console.log(await got.json())
}
data();