UNPKG

@corejam/core-components

Version:

Corejam - Core Components

9 lines (8 loc) 204 B
export default { property: "visibility", transform: (value) => { const valids = ["visible", "hidden"]; if (valids.includes(value)) return value; throw new Error("Prop not valid"); }, };