UNPKG
stiebel
Version:
latest (1.3.4)
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
Control your Stiebel Eltron heatpump via ServiceWelt
github.com/jakutis/stiebel
jakutis/stiebel
stiebel
/
lib
/
temperature.js
5 lines
(4 loc)
•
171 B
JavaScript
View Raw
1
2
3
4
5
module.exports = { stringify: temperature => temperature.toFixed(1).
split
(
'.'
).
join
(
','
), parse: temperature => parseFloat(temperature.trim().
split
(
','
).
join
(
'.'
)) };