Differences From Artifact [dc73f90efa]:
- File 残局文料/lib/程语_月_基类_文_内置库_加多.lua — part of check-in [22b0919894] at 2024-01-27 02:23:15 on branch trunk — (/ω\) (user: 顽雨沉风, size: 553) [annotate] [blame] [check-ins using]
To Artifact [f99c2f64e2]:
- File 残局文料/lib/程语_月_基类_文_内置库_加多.lua — part of check-in [49fd90cf4e] at 2024-01-27 02:23:34 on branch trunk — (/ω\) (user: 顽雨沉风, size: 490) [annotate] [blame] [check-ins using]
1 | function string:lstrip() | < < < | < | 1 2 3 4 5 6 7 8 9 | function string:lstrip() return self:gsub("^%s+", "") end function string:rstrip() if self == nil then return nil end local s = self:gsub("%s+$", "") return s |
︙ | ︙ |