Function
toFrames
(lines: ReadonlyArray<unknown>)
Source from the content-addressed store, hash-verified
| 41 | lines |
| 42 | .map((line) => stripAnsi(String(line))) |
| 43 | .filter((line) => line.split(bell).join("").trim().length > 0) |
| 44 | |
| 45 | const toRawFrames = (lines: ReadonlyArray<unknown>) => |
| 46 | lines |
| 47 | .map((line) => String(line)) |
| 48 | .filter((line) => stripAnsi(line).split(bell).join("").trim().length > 0) |
| 49 | |
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…