UNPKG

monday-ui-react-core

Version:

Official monday.com UI resources for application development in React.js

8 lines (6 loc) 290 B
import toNumber from "lodash/toNumber"; export const calculatePercentage = (value, min, max) => { const valuePercentage = (toNumber(value - min) / toNumber(max - min)) * 100; const normalizedPercentage = valuePercentage > 100 ? 100 : valuePercentage; return normalizedPercentage; };