Module:UnitConverter: 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.

9 June 2024

8 June 2024

5 June 2024

  • curprev 17:5117:51, 5 June 2024Zeddy talk contribs 1,580 bytes +1,580 Created page with "local p = {} --p stands for package function p.getWeightMetric( frame ) --Load in weight input local weightInGrams = frame.args[1] --Test for empty input if weightInGrams == nil then return nil end --Test for hard coded kg in input if string.find(weightInGrams, "kg") then weightInGrams = string.match(weightInGrams, "%d*%.?%d+") weightInGrams = tonumber(weightInGrams) if weightInGrams == nil then return "non-number detected" else return weightInGra..."