(object, prefix)
| 79 | const arc = compileShaderPair('arc.glslx') |
| 80 | |
| 81 | function rename(object, prefix) { |
| 82 | return Object.fromEntries( |
| 83 | Object.entries(object).map(([key, value]) => [ |
| 84 | prefix + key, |
| 85 | JSON.stringify(value), |
| 86 | ]), |
| 87 | ) |
| 88 | } |
| 89 | |
| 90 | esbuild |
| 91 | .build({ |
no outgoing calls
no test coverage detected
searching dependent graphs…