Skip to main content
variable fahrenheitToCelsius
import { fahrenheitToCelsius } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Converts Fahrenheit to Celsius.

Follows the conversion formula C = (F - 32) * 5/9.

type

(degrees: number) => unknown