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.

19 lines (16 loc) 398 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; const validateDecrement = ({ value, minValue = Number.NEGATIVE_INFINITY, step = 1 }) => { const newValue = value - step; const calculatedValue = newValue <= +minValue ? minValue : newValue; return calculatedValue; }; var _default = validateDecrement; exports.default = _default;