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

9 lines
174 B
JavaScript

/**
* Decides if the supplied variable is variant label
*/
function isVariantLabel(v) {
return typeof v === "string" || Array.isArray(v);
}
export { isVariantLabel };