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

Function computeClipTreeSignature

packages/core/src/runtime/init.ts:1802–1808  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1800 // as another loads), so the signature keys on id+tag in document order.
1801 let clipTreeSignature = "";
1802 const computeClipTreeSignature = (): string => {
1803 let sig = "";
1804 for (const el of document.querySelectorAll("[data-start]")) {
1805 sig += `${el.id}:${el.tagName}|`;
1806 }
1807 return sig;
1808 };
1809 const postTimeline = () => {
1810 sanitizeCompositionDurationAttributes();
1811 applyCompositionSizing();

Callers 1

postTimelineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected