()
| 12 | }; |
| 13 | |
| 14 | export const getExtensionContext = (): vscode.ExtensionContext => { |
| 15 | if (!extensionContext) { |
| 16 | throw new Error('extension context initialize failed!'); |
| 17 | } |
| 18 | |
| 19 | return extensionContext; |
| 20 | }; |
| 21 | |
| 22 | const RECENT_REPOSITORIES = 'github1s-recent-repositories'; |
| 23 | export const getRecentRepositories = (): { name: string; timestamp: number }[] => { |
no outgoing calls
no test coverage detected