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.

14 August 2024

  • curprev 13:2213:22, 14 August 2024Natoxpy talk contribsm 258 bytes 0 Protected "Module:DurationFormatter" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
  • 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"