UNPKG

bmi-calcu

Version:
18 lines (11 loc) 257 B
## Installation You can install this package via npm: ``` npm install bmi-calcu ``` ## Usage ``` const { getBMI } = require('bmi-calcu'); const result = getBMI(70, 1.75); console.log(result); // { bmi: '22.86', status: 'Normal' } ```