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

9 lines
174 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
/**
* Decides if the supplied variable is variant label
*/
function isVariantLabel(v) {
return typeof v === "string" || Array.isArray(v);
}
export { isVariantLabel };