is-animation-controls.mjs 168 B

1234567
  1. function isAnimationControls(v) {
  2. return (v !== null &&
  3. typeof v === "object" &&
  4. typeof v.start === "function");
  5. }
  6. export { isAnimationControls };