* Guess the language the user is leveraging on their project.
()
| 242 | * Guess the language the user is leveraging on their project. |
| 243 | */ |
| 244 | function guessLang() { |
| 245 | const tsconfig = resolve(process.cwd(), 'tsconfig.json') |
| 246 | return existsSync(tsconfig) ? 'ts' : 'js' |
| 247 | } |
no outgoing calls
no test coverage detected