(str, sep)
| 2080 | } |
| 2081 | |
| 2082 | function splitFirstTopLevel(str, sep) { |
| 2083 | const parts = splitTopLevel(str, sep) |
| 2084 | return [parts[0] || '', parts.slice(1).join(sep).trim()] |
| 2085 | } |
| 2086 | |
| 2087 | function quoteIfNeeded(str) { |
| 2088 | str = `${str ?? ''}`.trim() |
no test coverage detected