summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@gmail.com>2018-05-04 15:36:54 +0100
committerDominik Picheta <dominikpicheta@gmail.com>2018-06-17 00:12:51 +0100
commit8081a9b3d0e31d144d0aa7c4d954c905fa564a7a (patch)
treec21f20b765cede610c8af233783cce298de97f1a
parent798a8bd45c6631864716566e0681590879015aeb (diff)
downloadNim-8081a9b3d0e31d144d0aa7c4d954c905fa564a7a.tar.gz
Exports unicode.toUpper/toLower in strutils module.
-rw-r--r--lib/pure/strutils.nim3
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