(str)
| 2038 | } |
| 2039 | |
| 2040 | function stripWrapQuote(str) { |
| 2041 | str = `${str ?? ''}`.trim() |
| 2042 | return /^".*"$/.test(str) || /^'.*'$/.test(str) ? str.slice(1, -1) : str |
| 2043 | } |
| 2044 | |
| 2045 | function splitTopLevel(str, sep = ',') { |
| 2046 | let arr = [] |
no outgoing calls
no test coverage detected