Tweak
This commit is contained in:
parent
307dea1881
commit
dc41f30c73
@ -81,6 +81,9 @@ local string2 = {
|
||||
starts_with = function(self, s)
|
||||
return sub(self, 1, #s) == s
|
||||
end,
|
||||
ends_with = function(self, s)
|
||||
return #self >= #s and sub(self, #self - #s, -1) == s
|
||||
end,
|
||||
lines = function(self)
|
||||
local _accum_0 = { }
|
||||
local _len_0 = 1
|
||||
|
@ -27,6 +27,7 @@ string2 = {
|
||||
byte: byte, bytes: (i, j)=> {byte(@, i or 1, j or -1)}
|
||||
split: (sep)=> [chunk for i,chunk in isplit(@, sep)]
|
||||
starts_with: (s)=> sub(@, 1, #s) == s
|
||||
ends_with: (s)=> #@ >= #s and sub(@, #@-#s, -1) == s
|
||||
lines: => [line for i,line in isplit(@, '\n')]
|
||||
line: (line_num)=>
|
||||
for i, line, start in isplit(@, '\n')
|
||||
|
Loading…
Reference in New Issue
Block a user