mirror of
https://github.com/octoleo/lsyncd.git
synced 2025-01-22 14:48:29 +00:00
simple improvement?
This commit is contained in:
parent
22e4b27a45
commit
93c7f5ceab
@ -9,6 +9,8 @@
|
||||
-- It works closely together with the Lsyncd core in lsyncd.c. This means it
|
||||
-- cannot be runned directly from the standard lua interpreter.
|
||||
--============================================================================
|
||||
-- require("profiler")
|
||||
-- profiler.start()
|
||||
|
||||
-----
|
||||
-- A security measurement.
|
||||
@ -2967,7 +2969,7 @@ alarm = UserAlarms.alarm
|
||||
-- Returns true if 'String' starts with 'Start'
|
||||
--
|
||||
function string.starts(String,Start)
|
||||
return string.sub(String,1,string.len(Start))==Start
|
||||
return string.sub(String,1,#Start)==Start
|
||||
end
|
||||
|
||||
-----
|
||||
@ -2975,7 +2977,7 @@ end
|
||||
-- Returns true if 'String' ends with 'End'
|
||||
--
|
||||
function string.ends(String,End)
|
||||
return End=='' or string.sub(String,-string.len(End))==End
|
||||
return End=='' or string.sub(String,-#End)==End
|
||||
end
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user