1
0
mirror of https://github.com/kepler155c/opus synced 2025-12-18 14:18:06 +00:00

package manager

This commit is contained in:
kepler155c@gmail.com
2018-11-04 13:00:37 -05:00
parent 67be1e0f2f
commit 99b2fa1b0b
7 changed files with 132 additions and 43 deletions

View File

@@ -507,7 +507,7 @@ function Util.matches(str, pattern)
return t
end
function Util.startsWidth(s, match)
function Util.startsWith(s, match)
return string.sub(s, 1, #match) == match
end