(path: string)
| 85 | } |
| 86 | |
| 87 | function issuerPath(path: string): string { |
| 88 | const base = Config.issuerBaseUrl.replace(/\/$/, "") |
| 89 | return `${base}${path}` |
| 90 | } |
| 91 | |
| 92 | function parseInterval(value: unknown): number { |
| 93 | if (typeof value === "number" && Number.isFinite(value)) { |
no outgoing calls
no test coverage detected