()
| 56 | } |
| 57 | function stripOuterQuotes(value) { |
| 58 | const input = String(value || "").trim(); |
| 59 | if (input.startsWith('"') && input.endsWith('"') || input.startsWith("'") && input.endsWith("'")) { |
| 60 | return input.slice(1, -1); |
| 61 | } |
| 62 | return input; |
| 63 | } |
no outgoing calls
no test coverage detected