diff options
author | V1K1NGbg <victor@ilchev.com> | 2024-08-07 00:09:37 +0300 |
---|---|---|
committer | V1K1NGbg <victor@ilchev.com> | 2024-08-07 00:09:37 +0300 |
commit | e8cc5f928ea4a9a212712926f2e4fd911086ebd5 (patch) | |
tree | e902897ee99feb2c005c6807107b535ba4894cd3 | |
parent | 05c9366732979b1a6e92a92766afc5126d4a299c (diff) | |
download | luarocks-e8cc5f928ea4a9a212712926f2e4fd911086ebd5.tar.gz luarocks-e8cc5f928ea4a9a212712926f2e4fd911086ebd5.tar.bz2 luarocks-e8cc5f928ea4a9a212712926f2e4fd911086ebd5.zip |
util
-rw-r--r-- | src/luarocks/core/util.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/luarocks/core/util.lua b/src/luarocks/core/util.lua index 8cd2d25e..3be00136 100644 --- a/src/luarocks/core/util.lua +++ b/src/luarocks/core/util.lua | |||
@@ -1,8 +1,5 @@ | |||
1 | local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end end; local debug = _tl_compat and _tl_compat.debug or debug; local io = _tl_compat and _tl_compat.io or io; local ipairs = _tl_compat and _tl_compat.ipairs or ipairs; local math = _tl_compat and _tl_compat.math or math; local os = _tl_compat and _tl_compat.os or os; local package = _tl_compat and _tl_compat.package or package; local pairs = _tl_compat and _tl_compat.pairs or pairs; local string = _tl_compat and _tl_compat.string or string; local table = _tl_compat and _tl_compat.table or table | 1 | local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end end; local debug = _tl_compat and _tl_compat.debug or debug; local io = _tl_compat and _tl_compat.io or io; local ipairs = _tl_compat and _tl_compat.ipairs or ipairs; local math = _tl_compat and _tl_compat.math or math; local os = _tl_compat and _tl_compat.os or os; local package = _tl_compat and _tl_compat.package or package; local pairs = _tl_compat and _tl_compat.pairs or pairs; local string = _tl_compat and _tl_compat.string or string; local table = _tl_compat and _tl_compat.table or table |
2 | local util = {Ordering = {}, } | 2 | local util = {} |
3 | |||
4 | |||
5 | |||
6 | 3 | ||
7 | 4 | ||
8 | 5 | ||