dashboard/frontend/node_modules/framer-motion/dist/es/render/utils/is-variant-label.mjs

9 lines
174 B
JavaScript
Raw Normal View History

2025-12-16 08:16:27 +09:00
/**
* Decides if the supplied variable is variant label
*/
function isVariantLabel(v) {
return typeof v === "string" || Array.isArray(v);
}
export { isVariantLabel };