ClojureScript
API
GitHub
clojure.string/trim
function
since v0.0-927
clojure.string/trim
Edit
(trim s)
Details:
Removes whitespace from both ends of string.
Source docstring:
Removes whitespace from both ends of string.
Source code @
clojurescript:src/main/cljs/clojure/string.cljs
(
defn
^
string
trim
[
s
]
(
gstring/trim
s
)
)