UNPKG

@hhgtech/hhg-components

Version:
12 lines (8 loc) 309 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function getBmi({ weight: weightProps, height: heightProps, }) { const height = heightProps / 100; const weight = weightProps; return Math.round((weight / (height * height)) * 10) / 10; } exports.getBmi = getBmi;