feat: add toFahrenheit() method

This commit is contained in:
Sebin Nyshkim 2022-01-11 14:24:36 +01:00
parent 428e9e788b
commit 35c694af79

View file

@ -49,5 +49,9 @@ export default {
return lbs; return lbs;
}, },
toFahrenheit(celsius) {
return celsius * 1.8 + 32;
},
}, },
}; };