Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

8 lines
168 B
JavaScript

function isAnimationControls(v) {
return (v !== null &&
typeof v === "object" &&
typeof v.start === "function");
}
export { isAnimationControls };