All files / projects-dev/libs/converters/src fahrenheit-to-celsius.ts

100% Statements 6/6
100% Branches 1/1
100% Functions 1/1
100% Lines 6/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 71x 1x 1x 1x 1x 1x  
const FAHRENHEIT_OFFSET = 32;
const FAHRENHEIT_TO_CELSIUS_FACTOR = 1.8;
 
export const fahrenheitToCelsius = (source: number): number => {
    return Number(((source - FAHRENHEIT_OFFSET) / FAHRENHEIT_TO_CELSIUS_FACTOR).toFixed(2));
};