Converts back to lbs from what the world is using as a measurement unit.
// Assuming metric is enabledpf1.utils.convertWeightBack(10); // => 20// With metric disabledpf1.utils.convertWeightBack(10); // => 10 Copy
// Assuming metric is enabledpf1.utils.convertWeightBack(10); // => 20// With metric disabledpf1.utils.convertWeightBack(10); // => 10
The value to convert back to lbs.
The converted value. In the case of the metric system, converts from kg.
Converts back to lbs from what the world is using as a measurement unit.
Example