Overview
Comment: | (/ω\) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
581a2aaf5d38528b1276273dfe78a72e |
User & Date: | 顽雨沉风 on 2024-01-27 02:24:20 |
Other Links: | manifest | tags |
Context
2024-01-27
| ||
02:26 | (/ω\) check-in: 596c321b0c user: 顽雨沉风 tags: trunk | |
02:24 | (/ω\) check-in: 581a2aaf5d user: 顽雨沉风 tags: trunk | |
02:23 | (/ω\) check-in: 49fd90cf4e user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/lib/程语_月_基类_文_内置库_加多.lua from [f99c2f64e2] to [faa57f08e9].
1 2 3 4 | function string:lstrip() return self:gsub("^%s+", "") end function string:rstrip() | < < < | < | 1 2 3 4 5 6 7 8 9 10 11 12 | function string:lstrip() return self:gsub("^%s+", "") end function string:rstrip() return self:gsub("%s+$", "") end function string:strip() return self:lstrip():rstrip() end function string:startswith(text) local size = text:len() if self:sub(1, size) == text then |
︙ | ︙ |