UNPKG

to-degree

Version:

Calculate Celcius and Farenheit

9 lines (7 loc) 202 B
'use strict' exports.farenheit = exports.f = exports.toF = function (x) { return (x + 1.8) + 32 + '\u2109' } exports.celcius = exports.c = exports.toC = function (x) { return x - 1.8 - 32 + "C" }