(str)
| 2033 | } |
| 2034 | |
| 2035 | function getArgArr(str) { |
| 2036 | let arr = str.split('+') |
| 2037 | return arr.map(item => item.replace(/➕/g, '+')) |
| 2038 | } |
| 2039 | |
| 2040 | function stripWrapQuote(str) { |
| 2041 | str = `${str ?? ''}`.trim() |
no outgoing calls
no test coverage detected