Commit a6c858d0 authored by Greg Wilson's avatar Greg Wilson Committed by GitHub

Update README.md

parent 98ac5244
...@@ -224,14 +224,13 @@ AppleHealthKit.getLatestBmi(null, (err: string, bmi: Object) => { ...@@ -224,14 +224,13 @@ AppleHealthKit.getLatestBmi(null, (err: string, bmi: Object) => {
___ ___
#### **`getLatestBodyFatPercentage`** #### **`getLatestBodyFatPercentage`**
get the most recent body fat percentage. the value is a percentage between 0 and 100 get the most recent body fat percentage. the percentage value is a number between 0 and 100
```javascript ```javascript
AppleHealthKit.getLatestBodyFatPercentage(null, (err: Object, bodyFatPercentage: number) => { AppleHealthKit.getLatestBodyFatPercentage(null, (err: Object, bodyFatPercentage: number) => {
if(this._handleHealthKitError(err, 'getLatestBodyFatPercentage')){ if(this._handleHealthKitError(err, 'getLatestBodyFatPercentage')){
return; return;
} }
// bodyFatPercentage now available as number // use bodyFatPercentage ...
// ...
}); });
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment