(value)
| 107 | function stripOuterQuotes(value) { |
| 108 | const input = String(value || "").trim() |
| 109 | if ((input.startsWith('"') && input.endsWith('"')) || (input.startsWith("'") && input.endsWith("'"))) { |
| 110 | return input.slice(1, -1) |
| 111 | } |
| 112 | return input |
| 113 | } |
| 114 |
no outgoing calls
no test coverage detected