()
| 19 | } |
| 20 | |
| 21 | function getAccessToken(): string | undefined { |
| 22 | const tokens = loadTokens(); |
| 23 | if (!tokens || isTokenExpired(tokens)) return undefined; |
| 24 | return tokens.access_token; |
| 25 | } |
| 26 | |
| 27 | function formatLibraryResult(lib: LibrarySearchResult, index: number): string { |
| 28 | const lines: string[] = []; |
no test coverage detected