(text: string)
| 222 | } |
| 223 | |
| 224 | function stripQuotes(text: string): string { |
| 225 | return text.length >= 2 && |
| 226 | ((text[0] === '"' && text.at(-1) === '"') || |
| 227 | (text[0] === "'" && text.at(-1) === "'")) |
| 228 | ? text.slice(1, -1) |
| 229 | : text |
| 230 | } |
| 231 |
no outgoing calls
no test coverage detected