Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
p3nGu1nZz
/
plasma-arc
like
6
Running
App
Files
Files
Community
c75754c
plasma-arc
/
utility.js
p3nGu1nZz
tidy
f357aae
26 days ago
raw
Copy download link
history
blame
Safe
134 Bytes
// utility.js
export
async
function
fetchShaderCode
(
url
) {
const
response =
await
fetch
(url);
return
await
response.
text
();
}