(value)
| 208 | } |
| 209 | |
| 210 | function readTomlStringValue(value) { |
| 211 | var raw = stripTomlComment(value); |
| 212 | var match = raw.match(/^(['"])([\s\S]*)\1$/); |
| 213 | if (match) return match[2]; |
| 214 | return raw.trim(); |
| 215 | } |
| 216 | |
| 217 | function codexConfigExpectsProxy(env) { |
| 218 | var file = getCodexConfigFile(env); |
no test coverage detected