UNPKG

@corejam/core-components

Version:

Corejam - Core Components

15 lines (13 loc) 285 B
/** * * @param value * hook into touch and webkit prefix */ export default { property: "overflow", transform: (value) => { const valids = ["auto", "hidden", "visible", "scroll"]; if (valids.includes(value)) return value; throw new Error("Prop not valid"); }, };