Files
2026-03-27 18:36:05 +00:00

9 lines
219 B
JavaScript

function isAnimationControls(v) {
return (v !== null &&
typeof v === "object" &&
typeof v.start === "function");
}
export { isAnimationControls };
//# sourceMappingURL=is-animation-controls.mjs.map