TIL: How to copy html in JavaScript
await navigator.clipboard.write([
new ClipboardItem({
["text/plain"]: new Blob([element.innerText], { type: "text/plain" }),
["text/html"]: new Blob([element.innerHTML], { type: "text/html" }),
}),
]);
TIL: How to copy html in JavaScript
await navigator.clipboard.write([
new ClipboardItem({
["text/plain"]: new Blob([element.innerText], { type: "text/plain" }),
["text/html"]: new Blob([element.innerHTML], { type: "text/html" }),
}),
]);
A JavaScript runtime, bundler, transpiler and package manager.
sqlite
Testing Snowpack , right now is a no go until all the packages have ESM support.