()
| 85129 | const jsonIndex = input.search("```json"); |
| 85130 | if (jsonIndex > -1) { |
| 85131 | input = input.slice(jsonIndex + 8); |
| 85132 | const endJsonIndex = input.search("```"); |
| 85133 | input = input.slice(0, endJsonIndex); |
| 85134 | } |
| 85135 | return input; |
| 85136 | }; |
| 85137 | var commitlintLLMConfigExists = async () => { |
| 85138 | let exists; |
| 85139 | try { |
| 85140 | await import_promises2.default.access(COMMITLINT_LLM_CONFIG_PATH); |
| 85141 | exists = true; |
| 85142 | } catch (e3) { |
| 85143 | exists = false; |
no outgoing calls
no test coverage detected
searching dependent graphs…