(stepIndex: number)
| 345 | * naturally without breaking existing fixtures. |
| 346 | */ |
| 347 | export function stepFilenamePrefix(stepIndex: number): string { |
| 348 | return stepIndex >= 100 ? String(stepIndex).padStart(3, '0') : String(stepIndex).padStart(2, '0'); |
| 349 | } |
| 350 | |
| 351 | /** |
| 352 | * Build the §7.1 meta.json given a context. Pure function, no I/O — |
no outgoing calls
no test coverage detected