diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2018-05-04 15:36:54 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2018-06-17 00:12:51 +0100 |
commit | 8081a9b3d0e31d144d0aa7c4d954c905fa564a7a (patch) | |
tree | c21f20b765cede610c8af233783cce298de97f1a | |
parent | 798a8bd45c6631864716566e0681590879015aeb (diff) | |
download | Nim-8081a9b3d0e31d144d0aa7c4d954c905fa564a7a.tar.gz |
Exports unicode.toUpper/toLower in strutils module.
-rw-r--r-- | lib/pure/strutils.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim index 5de013c26..055e91faf 100644 --- a/lib/pure/strutils.nim +++ b/lib/pure/strutils.nim @@ -17,6 +17,9 @@ import parseutils from math import pow, round, floor, log10 from algorithm import reverse +from unicode import toLower, toUpper +export toLower, toUpper + {.deadCodeElim: on.} # dce option deprecated {.push debugger:off .} # the user does not want to trace a part |