renderRules function ✓ 100.0%
Last updated: 2026-03-01T23:25:47.071Z
Metrics
LOC: 3
Complexity: 1
Params: 1
Coverage: 100.0% (1/1 lines, 75x executed)
Signature
renderRules(rules: readonly string[]): : string
Source Code
function renderRules(rules: readonly string[]): string {
return rules.map((r, i) => `${i + 1}. ${r}`).join("\n");
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| renderPromptBase | calls |