Content deleted Content added
Alistair3149 (talk | contribs) No edit summary Tag: 2017 source edit |
Alistair3149 (talk | contribs) No edit summary Tag: 2017 source edit |
||
Line 1: | Line 1: | ||
{{ |
{{Documentation}} |
||
{{Helper module |
{{Helper module |
||
|name=Paramtest |
|name=Paramtest |
Latest revision as of 00:30, 7 March 2024
This is a documentation subpage for 'Module:Paramtest'.
It contains usage information, categories, and other content that is not part of the original module page.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 44 — p.is_empty L 52 — p.table_is_empty L 63 — p.default_to L 74 — p.defaults L 89 — p.has_content L 98 — p.table_has_content L 109 — p.ucfirst L 123 — p.ucflc |
This module is a helper module to be used by other modules; it may not designed to be invoked directly. See Star Citizen:Lua/Helper modules for a full list and more information.
Function | Type | Use |
---|---|---|
is_empty(arg) | String | Returns true if arg is not defined or contains only whitespace |
has_content(arg) | String | Returns true if arg exists and does not only contain whitespace |
default_to(arg1,arg2) | String, Any value | If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |
defaults{ {arg1,arg2},...} | {String, Any value}... | Does the same as default_to() run over every table passed |
table_is_empty(arg) | Table | Returns true if the table has no content, it does not check if the content of the table contains anything |
table_has_content(arg) | Table | returns true if the table has content, it does not check if the content of the table contains anything |