README
get-value-in-range
Calculate range adjusted values
number
getValueInRange(value, values) ⇒ Find the position of the value within a range where 0 is the minimum value and 1 is the maximum value.
Kind: global function
Returns: number
- The position of the value within the range
Param | Type | Description |
---|---|---|
value | number |
The value to place within the range |
values | number |
All of the values necessary to calculate the range |
Example
getValueInRange(7.5, [10, 5]);
// → 0.5
Scripts
– run the tests test
npm run test
– lint the codebase lint
npm run lint
– generate the README readme
npm run readme
License
MIT @ Flip