(frame: GroupingFrame)
| 114 | }; |
| 115 | |
| 116 | const frameHasContentHash = (frame: GroupingFrame): boolean => |
| 117 | containsContentHash(frame.module ?? "") || |
| 118 | containsContentHash(frame.filename ?? "") || |
| 119 | containsContentHash(frame.abs_path ?? ""); |
| 120 | |
| 121 | /** |
| 122 | * How many frames from the top of the stack enter the fingerprint. Bundlers |
nothing calls this directly
no test coverage detected