Module:TypesLib: 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 May 2024

3 May 2024

19 February 2024

  • curprev 07:2707:27, 19 February 2024Maruhop talk contribs 284 bytes +284 Created page with "-- This library allows conversion between types. Template args are always received as a string, making conversion necessary in some cases. -- Add additional conversions as needed local lib = {} function lib.string_to_bool(val) return val == 'true' and val ~= 'false' end return lib"