UNPKG

bodyfat

Version:

Body fat algorithms

20 lines 506 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BodyFat = void 0; var BodyFat = /** @class */ (function () { function BodyFat() { } /** * Body fat percentage from body density * * @param bodyDensity number * * @return number */ BodyFat.getPercentageFromDensity = function (bodyDensity) { return 495 / bodyDensity - 450; }; return BodyFat; }()); exports.BodyFat = BodyFat; //# sourceMappingURL=BodyFat.js.map