summaryrefslogtreecommitdiff
path: root/server/locale/en-US/libs/lua/package.lni
blob: 3b482ae9a77edfa2c18d3359c26d41e5b7022b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[config]
description = 'A string describing some compile-time configurations for packages.'

[cpath]
description = 'The path used by `require` to search for a C loader.'

[loaded]
description = 'A table used by `require` to control which modules are already loaded.'

[loaders]
description = 'A table used by `require` to control how to load modules.'

[loadlib]
description = 'Dynamically links the host program with the C library `libname`.'

[path]
description = 'The path used by `require` to search for a Lua loader.'

[preload]
description = 'A table to store loaders for specific modules.'

[searchers]
description = 'A table used by `require` to control how to load modules.'

[searchpath]
description = 'Searches for the given `name` in the given `path`.'

[seeall]
describing = 'Sets a metatable for `module` with its `__index` field referring to the global environment, so that this module inherits values from the global environment. To be used as an option to function `module` .