(path: string)
| 273 | ) => await vscode.window.showQuickPick<T>(options, { ...config, canPickMany: true }); |
| 274 | |
| 275 | export const sanitizePath = (path: string) => (path.startsWith("/") ? path : `/${path}`); |
| 276 | |
| 277 | export const writeToFile = async (path: string | vscode.Uri, content: string) => { |
| 278 | const destination = typeof path === "string" ? vscode.Uri.file(path) : path; |
no outgoing calls
no test coverage detected