Module:Utils/doc: Difference between revisions

From Eco - English Wiki
[checked revision][checked revision]
m (Add Usage section.)
No edit summary
Tag: 2017 source edit
Line 1: Line 1:
== Description ==
This module provides utility functions used from other modules.
This module provides utility functions used from other modules.


Line 6: Line 7:
<syntaxhighlight lang="lua">local Utils = require("Module:Utils")
<syntaxhighlight lang="lua">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:
local tableLength = Utils.tableLen(myTable)</syntaxhighlight>
local tableLength = Utils.tableLen(myTable)</syntaxhighlight>
[[Category: WikiModules]]

Revision as of 12:25, 20 May 2024

Description

This module provides utility functions used from other modules.

Usage

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)