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

Function overflowValueClips

packages/cli/src/utils/layoutAudit.ts:106–108  ·  view source on GitHub ↗
(value: string | null | undefined)

Source from the content-addressed store, hash-verified

104 * — every clipping value must, or real masked overflow gets reported as a bug.
105 */
106export function overflowValueClips(value: string | null | undefined): boolean {
107 return !!value && value !== "visible" && value !== "clip visible";
108}
109
110export function summarizeLayoutIssues(issues: LayoutIssue[]): LayoutSummary {
111 const errorCount = issues.filter((issue) => issue.severity === "error").length;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected