UNPKG

@onesy/utils

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