(arr)
| 14274 | return del |
| 14275 | } |
| 14276 | static flatten(arr) { |
| 14277 | if (arr.flat) return arr.flat() |
| 14278 | return arr.reduce((acc, val) => acc.concat(val), []) |
| 14279 | } |
| 14280 | static escapeBackTicks(str) { |
| 14281 | return str.replace(/\`/g, "\\`").replace(/\$\{/g, "\\${") |
| 14282 | } |
no test coverage detected