UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com's products.

14 lines (13 loc) 348 B
"use strict"; exports.__esModule = true; exports.default = void 0; const validateIncrement = ({ value, maxValue = Number.POSITIVE_INFINITY, step = 1 }) => { const newValue = value + step; const calculatedValue = newValue >= +maxValue ? maxValue : newValue; return calculatedValue; }; var _default = exports.default = validateIncrement;