summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorJuan Carlos <juancarlospaco@gmail.com>2020-07-01 18:16:50 -0300
committerGitHub <noreply@github.com>2020-07-01 23:16:50 +0200
commitcbcaf2bbc4c7a818747a27f365c4cd1bf54feedf (patch)
tree34f7fccf2cb283db26d101f93a71c8baf45c8782 /lib
parent930a0c999b823ae33cecc765110f10b4eaabfcfb (diff)
downloadNim-cbcaf2bbc4c7a818747a27f365c4cd1bf54feedf.tar.gz
Clean out strutils (#14859)
Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/strutils.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim
index 1ffc8bf22..32d6ede1e 100644
--- a/lib/pure/strutils.nim
+++ b/lib/pure/strutils.nim
@@ -2935,11 +2935,6 @@ proc isEmptyOrWhitespace*(s: string): bool {.noSideEffect, rtl,
   ## Checks if `s` is empty or consists entirely of whitespace characters.
   result = s.allCharsInSet(Whitespace)
 
-proc isNilOrWhitespace*(s: string): bool {.noSideEffect, rtl,
-    extern: "nsuIsNilOrWhitespace",
-    deprecated: "use isEmptyOrWhitespace instead".} =
-  ## Alias for isEmptyOrWhitespace
-  result = isEmptyOrWhitespace(s)
 
 when isMainModule:
   proc nonStaticTests =