UNPKG

@shopify/polaris

Version:

Shopify’s product component library

8 lines (6 loc) 137 B
function clamp(number, min, max) { if (number < min) return min; if (number > max) return max; return number; } export { clamp };