Module:Utils/doc: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
No edit summary
Tag: 2017 source edit
Tag: 2017 source edit
 
Line 4: Line 4:
Add the following line of code at the top of your file.
Add the following line of code at the top of your file.


<syntaxhighlight lang="Lua">local Utils = require("Module:Utils")
<syntaxhighlight lang="text">local Utils = require("Module:Utils")


-- You may then call functions from this module in your script. For example:
-- You may then call functions from this module in your script. For example:

Latest revision as of 15:59, 30 November 2024

This module provides utility functions used from other modules.

Usage[edit source]

Add the following line of code at the top of your file.

local Utils = require("Module:Utils")

-- You may then call functions from this module in your script. For example:
local tableLength = Utils.tableLen(myTable)