UNPKG
to-degree
Version:
latest (1.0.1)
1.0.1
1.0.0
Calculate Celcius and Farenheit
github.com/asyncnick/degree
asyncnick/degree
to-degree
/
index.js
9 lines
(7 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'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"
}