Fix prettier issue.

This commit is contained in:
Michael Teeuw 2020-12-08 15:42:01 +01:00
parent 198525f2ce
commit 43b33cb6de

View File

@ -81,7 +81,7 @@ class WeatherObject {
const windInKmh = this.windUnits === "imperial" ? this.windSpeed * 1.609344 : (this.windSpeed * 60 * 60) / 1000;
return windInKmh;
}
nextSunAction() {
return moment().isBetween(this.sunrise, this.sunset) ? "sunset" : "sunrise";
}