diff options
author | Eduardo Julian | 2018-05-06 02:01:02 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-05-06 02:01:02 -0400 |
commit | f5a6fe62a612c0727063fa9e530d53ddda5fcd82 (patch) | |
tree | 4c129edee0d68e00e72dd792311ae0c37d71d1dd /new-luxc/source/luxc/lang/translation/js/procedure | |
parent | 3f5cb79407289996b107c65ccd14451e4fbd9679 (diff) |
- Removed "lux text upper" and "lux text lower" procedures.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux b/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux index 8e40799f2..15c48a138 100644 --- a/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux +++ b/new-luxc/source/luxc/lang/translation/js/procedure/common.jvm.lux @@ -325,9 +325,6 @@ (format inputJS <op>))] [text//size ".length"] - [text//trim ".trim()"] - [text//upper ".toUpperCase()"] - [text//lower ".toLowerCase()"] ) (do-template [<name> <method>] @@ -567,8 +564,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 |