Module:DurationFormatter: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)

14 August 2024

  • curprev 13:1513:15, 14 August 2024Natoxpy talk contribs 258 bytes +258 Created page with "-- Module:DurationFormatter local p = {} function p.formatDuration(frame) local seconds = tonumber(frame.args[1]) local minutes = math.floor(seconds / 60) local secs = seconds % 60 return string.format("%d:%02d", minutes, secs) end return p"
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)