Calculate one part's percentage of the whole
npm install @does/percent``
const percent = require('@does/percent');
// percent(part, whole):
percent(150, 200) // 75
percent(200, 150) // 133
`
Also available for explicit import:
`js``
const percent = require('@does/percent/dist');