(components)
| 183 | } |
| 184 | |
| 185 | function componentStack(components) { |
| 186 | return components |
| 187 | .map(component => `\n in ${component} (at **)`) |
| 188 | .join(''); |
| 189 | } |
| 190 | |
| 191 | const bodyStartMatch = /<body(?:>| .*?>)/; |
| 192 | const headStartMatch = /<head(?:>| .*?>)/; |
no test coverage detected