UNPKG

@brewlab/calc

Version:

Library with methods for calculations used in brewing.

9 lines (8 loc) 381 B
/** * Provides the final gravity of a beer given the initial * brix and the final brix measured. * @param {number} ogBrix the original gravity as refractometer brix * @param {number} fgBrix the final gravity as refractometer brix * @returns {number} the final gravity converted from brix */ export default function brixToFinalGravity(ogBrix: number, fgBrix: number): number;