UNPKG

@onesy/utils

Version:
7 lines (6 loc) 309 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const valueFromPercentageWithinRange = (value, min, max, minAllowed = 0, maxAllowed = 100) => { return min + ((value * (max - min + minAllowed)) / (maxAllowed - minAllowed)); }; exports.default = valueFromPercentageWithinRange;