Update On Thu Jan 1 19:42:29 CET 2026

This commit is contained in:
github-action[bot]
2026-01-01 19:42:29 +01:00
parent 33eb8fd71f
commit f775862833
82 changed files with 4459 additions and 4378 deletions
@@ -243,9 +243,9 @@ function url(...)
end
function trim(s)
local len = #s
local i, j = 1, len
while i <= len and s:byte(i) <= 32 do i = i + 1 end
if type(s) ~= "string" then return "" end
local i, j = 1, #s
while i <= j and s:byte(i) <= 32 do i = i + 1 end
while j >= i and s:byte(j) <= 32 do j = j - 1 end
if i > j then return "" end
return s:sub(i, j)