(value)
| 67 | } |
| 68 | |
| 69 | function _tomlStringValue(value) { |
| 70 | const raw = _stripTomlComment(value); |
| 71 | const match = raw.match(/^(['"])([\s\S]*)\1$/); |
| 72 | return match ? match[2] : raw.trim(); |
| 73 | } |
| 74 | |
| 75 | function _codexConfigPath() { |
| 76 | if (process.env.CODEX_CONFIG_FILE || process.env.EVOMAP_CODEX_CONFIG_FILE) { |
no test coverage detected