(v)
| 208 | } |
| 209 | |
| 210 | function toArray(v) { |
| 211 | if (Array.isArray(v)) return v |
| 212 | if (v == null || v === '' || typeof v === 'boolean' || typeof v === 'number') return [] |
| 213 | return [v] |
| 214 | } |
| 215 | |
| 216 | function quote(s) { |
| 217 | return `'${String(s).replace(/'/g, "\\'")}'` |
no outgoing calls
no test coverage detected
searching dependent graphs…