diff --git a/README.md b/README.md index 839abbcd832d0cc1a2021afadfdf5cc5d0baa440..d8cb2a0246278d763c2ede9b2997a2ce6ad4d854 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,18 @@ AppleHealthKit.getLatestBodyFatPercentage(null, (err: Object, bodyFatPercentage: }); ``` +___ + +#### **`getLatestLeanBodyMass`** +get the most recent lean body mass. the value is a number representing the weight in pounds (lbs) +```javascript + AppleHealthKit.getLatestLeanBodyMass(null, (err: Object, leanBodyMass: number) => { + if(this._handleHealthKitError(err, 'getLatestLeanBodyMass')){ + return; + } + // use leanBodyMass ... +}); +``` [Apple HealthKit]: https://developer.apple.com/healthkit/