diff options
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux index 91906d899..2bef7cbcf 100644 --- a/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/lua/procedure/common.jvm.lux @@ -331,14 +331,8 @@ (|>> (list) (lua.apply <op>)))] [text//size "string.len"] - [text//upper "string.upper"] - [text//lower "string.lower"] ) -(def: (text//trim inputO) - Unary - (lua.apply "string.match" (list inputO "^%s*(.-)%s*$"))) - (def: (text//concat [subjectO paramO]) Binary (format "(" subjectO " .. " paramO ")")) @@ -557,8 +551,6 @@ (install "replace-all" (trinary text//replace-all)) (install "char" (binary text//char)) (install "clip" (trinary text//clip)) - (install "upper" (unary text//upper)) - (install "lower" (unary text//lower)) ))) (def: array-procs |