(value: number)
| 147 | } |
| 148 | |
| 149 | function formatValue(value: number) { |
| 150 | if (Math.abs(value) >= 100) { |
| 151 | return value.toFixed(1); |
| 152 | } |
| 153 | return value.toFixed(2); |
| 154 | } |
| 155 | |
| 156 | const options = parseArgs(Bun.argv.slice(2)); |
| 157 | const scripts = options.scripts.length > 0 ? options.scripts : [...defaultScripts]; |