UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

12 lines (8 loc) 221 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function clamp(number, min, max) { if (number < min) return min; if (number > max) return max; return number; } exports.clamp = clamp;