UNPKG

rhombus-node-mcp

Version:
9 lines (8 loc) 261 B
export var TempUnit; (function (TempUnit) { TempUnit["CELSIUS"] = "C"; TempUnit["FAHRENHEIT"] = "F"; })(TempUnit || (TempUnit = {})); export function tempFunc(temp, tempUnit) { return tempUnit === TempUnit.FAHRENHEIT ? (temp * 9) / 5 + 32 : temp; }