Removing unused variable

pull/3595/head
Brendan Sleight 2024-09-30 22:00:16 +01:00
parent a6d51bf370
commit aa85488155
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ function wordsFromTime(h, m)
const MINUTES_ACCURATE_ARRAY = ["", "just gone ", "a little after ", "coming up to ", "almost "]; const MINUTES_ACCURATE_ARRAY = ["", "just gone ", "a little after ", "coming up to ", "almost "];
var hourAdjusted = h; var hourAdjusted = h;
var words = " ", hourWord = " ", partDayWord = " ", minutesRough = " ", minutesAccurate = " ", days = " "; var words = " ", hourWord = " ", partDayWord = " ", minutesRough = " ", minutesAccurate = " ";
// At 33 past the hours we start referign to the next hour // At 33 past the hours we start referign to the next hour
if (m > 32) { if (m > 32) {