(output)
| 235 | }; |
| 236 | |
| 237 | const normalizeVersions = (output) => |
| 238 | output.replaceAll( |
| 239 | /(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?/gi, |
| 240 | "x.x.x", |
| 241 | ); |
| 242 | |
| 243 | const normalizeCwd = (output) => |
| 244 | output |
no outgoing calls
no test coverage detected