Module:Utils/doc: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
(Created page with "{{Category: WikiModules}}")
 
No edit summary
Tag: 2017 source edit
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Category: WikiModules}}
== Description ==
This module provides utility functions used from other modules.
 
== Usage ==
Add the following line of code at the top of your file.
 
<syntaxhighlight lang="lua">local Utils = require("Module:Utils")
 
-- You may then call functions from this module in your script. For example:
local tableLength = Utils.tableLen(myTable)</syntaxhighlight>
 
<includeonly>[[Category:Modules]]</includeonly>
<noinclude>[[Category:Module Docs]]</noinclude>

Latest revision as of 12:53, 20 May 2024

Description[edit source]

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)