Overview
Comment: | (/ω\) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
49fd90cf4eb8737c469328cdcea696a8 |
User & Date: | 顽雨沉风 on 2024-01-27 02:23:34 |
Other Links: | manifest | tags |
Context
2024-01-27
| ||
02:24 | (/ω\) check-in: 581a2aaf5d user: 顽雨沉风 tags: trunk | |
02:23 | (/ω\) check-in: 49fd90cf4e user: 顽雨沉风 tags: trunk | |
02:23 | (/ω\) check-in: 22b0919894 user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/lib/程语_月_基类_文_内置库_加多.lua from [dc73f90efa] to [f99c2f64e2].
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 |
︙ | ︙ |