()
| 12 | import { randomBytes } from 'crypto'; |
| 13 | |
| 14 | export function config(): vscode.WorkspaceConfiguration { |
| 15 | return vscode.workspace.getConfiguration('r'); |
| 16 | } |
| 17 | |
| 18 | function substituteVariable(str: string, key: string, getValue: () => string | undefined) { |
| 19 | if (str.includes(key)) { |
no outgoing calls
no test coverage detected