(arr)
| 188 | const identifier = str => `"${str.replace(/"/g, '""')}"`; |
| 189 | const defer = x => () => x; |
| 190 | const isStringArray = (arr) => { |
| 191 | for (let i = 0; i < arr.length; ++i) { |
| 192 | if (typeof arr[i] !== 'string') return false; |
| 193 | } |
| 194 | return true; |
| 195 | }; |
no outgoing calls
no test coverage detected