Map/lerp math function
npm install @hellomonday/map> Map one number range to another. This is also known as learp.
```
$ npm install --save @hellomonday/map
`js
import map from '@hellomonday/map';
// map input from range 10-500 to 0-1
const input = 70;
const value = map(input, 10, 500, 0, 1);
``
MIT © Hello Monday