UNPKG
tempconv
Version:
latest (1.1.0)
1.1.0
1.0.0
Simple temperature unit converter. Converts between °C, °F and K easily.
tempconv
/
tests
/
test.js
2 lines
•
127 B
JavaScript
View Raw
1
2
const
{ Convert } =
require
(
'../lib/index.js'
); console.
log
(
Convert
({
from
:
'C'
,
to
:
'F'
,
value
:
1
}); // Should
return
33.8
.