plasma-arc / utility.js
p3nGu1nZz's picture
move over butter
2c0108d
raw
history blame
135 Bytes
// utility.js
export async function fetchShaderCode(url) {
const response = await fetch(url);
return await response.text();
}