7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
|
await fetch("https://unpkg.com/papercss/dist/paper.min.css")
|
||
|
.then((res) => res.arrayBuffer())
|
||
|
.then((data) =>
|
||
|
Deno.writeFile("./public/paper.min.css", new Uint8Array(data))
|
||
|
)
|
||
|
.catch(console.error);
|