Overview
Comment: | (/ω\) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8aa534f2d44e8ce9b376c958ba15549b |
User & Date: | 顽雨沉风 on 2024-01-27 09:05:03 |
Other Links: | manifest | tags |
Context
2024-01-27
| ||
09:26 | (/ω\) check-in: aaa8380c62 user: 顽雨沉风 tags: trunk | |
09:05 | (/ω\) check-in: 8aa534f2d4 user: 顽雨沉风 tags: trunk | |
09:01 | (/ω\) check-in: dd620ddaa9 user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局文料/lib/ipml_mj_ysaf.lua from [72de38869f] to [5e5969b85b].
1 2 3 4 5 | package.path = [[.\lib\?.lua;]] .. package.path package.cpath = [[.\lib\?.dll;]] .. package.cpath local 字集码互转库 = require("u8_to_a") local d_5 = {} local 简件系库 = require("lfs") | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | package.path = [[.\lib\?.lua;]] .. package.path package.cpath = [[.\lib\?.dll;]] .. package.cpath local 字集码互转库 = require("u8_to_a") local d_5 = {} local 简件系库 = require("lfs") require(字集码互转库.u8_to_a("程语_月_基类_字串_内置库_加多")) --~ 程语_月_标准库_仿照_加多_多编码_大字集_通用 function d_5.导入库_通用大字集态_八位态(modname) return require(字集码互转库.u8_to_a(modname)) end --~ local do local k1 = 0 |
︙ | ︙ |
Added 残局文料/lib/程语_月_基类_字串_内置库_加多.lua version [a728f1d5af].
> > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | function string:lstrip() return self:gsub("^%s+", "") end function string:rstrip() return self:gsub("%s+$", "") end function string:strip() local k1 k1 = self:lstrip() return k1:rstrip() end function string:startswith(text) if self:sub(1, #text) == text then return self end end function string:endswith(text) if self:sub(-#text) == text then return self end end |