(str)
| 14278 | return arr.reduce((acc, val) => acc.concat(val), []) |
| 14279 | } |
| 14280 | static escapeBackTicks(str) { |
| 14281 | return str.replace(/\`/g, "\\`").replace(/\$\{/g, "\\${") |
| 14282 | } |
| 14283 | static ucfirst(str) { |
| 14284 | return str.charAt(0).toUpperCase() + str.slice(1) |
| 14285 | } |
no test coverage detected