MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / staticIssueKey

Function staticIssueKey

packages/cli/src/utils/layoutAudit.ts:225–234  ·  view source on GitHub ↗
(issue: LayoutIssue)

Source from the content-addressed store, hash-verified

223}
224
225function staticIssueKey(issue: LayoutIssue): string {
226 return [
227 issue.code,
228 issue.severity,
229 issue.selector,
230 issue.containerSelector ?? "",
231 issue.text ?? "",
232 issue.overflow ? formatOverflow(issue.overflow) : "",
233 ].join("|");
234}
235
236function uniqueSortedTimes(times: number[]): number[] {
237 const rounded = times.map(roundTime);

Callers 1

Calls 1

formatOverflowFunction · 0.85

Tested by

no test coverage detected