mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-04 10:50:57 +01:00
* Restructures monorepo packages * Updated pesde manifests with scope and other metadata * Consolidated all interactive install logic into __call metamethod for one liner bin re-exports * Renamed binlib->toolchainlib * Introduced first real world package - stylua (!!)
6 lines
136 B
Text
6 lines
136 B
Text
return function(tab)
|
|
local len = #tab
|
|
for pos = 1, len // 2 do
|
|
tab[pos], tab[len - pos + 1] = tab[len - pos + 1], tab[pos]
|
|
end
|
|
end
|