## 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' }
```

