(entry: Entry<T> | undefined, now: number)
| 26 | let nonCodemodeToolMapSource: NonCodemodeTool[] | undefined |
| 27 | |
| 28 | function fresh<T>(entry: Entry<T> | undefined, now: number): entry is Entry<T> { |
| 29 | return entry !== undefined && entry.expiresAt > now |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * The raw `spec.json` text (for embedding into the search isolate) and its |
no outgoing calls
no test coverage detected