Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Utility/doc: Revision history

From Kronopolis and the Flat Plane

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.

18 October 2025

  • curprev 19:5319:53, 18 October 2025 Wioum talk contribs 895 bytes +895 Created page with "==Usage== Import: <code>local util = require('Module:Utility')</code> ==Functions== ===dump=== Turn a table into a string. <code>dump(table)</code><br> Return type: string ====Example==== <pre> local table = { dong = 'biggest', description = 'schlong' } local str = dump(table) </pre> Returns: <pre> { ["dong "] = biggest, ["description"] = schlong, } </pre> ---- ===firstToUpper=== Capitalize first character in a string. <code>firstToUpper(string)</code><br>..."