UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

15 lines 288 B
export const checkForValidAmount = _ref => { let { amount, maxAmount, minAmount } = _ref; if (maxAmount && amount > maxAmount) { return maxAmount; } if (amount < minAmount) { return minAmount; } return amount; }; //# sourceMappingURL=amountControl.js.map