(str: string)
| 197 | str.replaceAll(/Seed: {8}(-?\d+)/g, 'Seed: <<REPLACED>>'); |
| 198 | |
| 199 | const replaceTime = (str: string) => |
| 200 | str |
| 201 | .replaceAll(/\d*\.?\d+ m?s\b/g, '<<REPLACED>>') |
| 202 | .replaceAll(', estimated <<REPLACED>>', ''); |
| 203 | |
| 204 | export const replaceNodeInfo = (str: string) => |
| 205 | str |
no outgoing calls
no test coverage detected