UNPKG

@chayns-components/emoji-input

Version:
17 lines (16 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clamp = void 0; const clamp = (value, min, max) => { if (value < min) { return min; } if (value > max) { return max; } return value; }; exports.clamp = clamp; //# sourceMappingURL=number.js.map