(credits: number)
| 18 | * credit-denominated input (e.g. per-member usage limits). |
| 19 | */ |
| 20 | export function creditsToDollars(credits: number): number { |
| 21 | return credits / CREDIT_MULTIPLIER |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Single source of truth for rendering a dollar cost as a credit label. |
no outgoing calls
no test coverage detected