Skip to content

Commit

Permalink
Generate documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
niwinz committed Oct 15, 2023
1 parent cb63edb commit 22de6fa
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions latest/user-guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ <h3><a href="#blank" id="blank"></a>blank?</h3>
;; =&gt; true

(str/blank? nil)
;; =&gt; false
;; =&gt; true
</code></pre>
<h3><a href="#camel" id="camel"></a>camel</h3>
<p>Convert a string or keyword to a camelCased string.</p>
Expand Down Expand Up @@ -216,21 +216,7 @@ <h3><a href="#empty" id="empty"></a>empty?</h3>
;; =&gt; false

(str/empty? nil)
;; =&gt; false
</code></pre>
<h3><a href="#empty-or-nil" id="empty-or-nil"></a>empty-or-nil?</h3>
<p>Check if the string is empty or is nil.</p>
<pre><code class="language-clojure">(str/empty-or-nil? "foobar")
;; =&gt; false

(str/empty-or-nil? nil)
;; =&gt; true

(str/empty? "")
;; =&gt; true

(str/empty? " ")
;; =&gt; false
</code></pre>
<h3><a href="#ends-with" id="ends-with"></a>ends-with?</h3>
<p>Check if the string ends with suffix.</p>
Expand Down

0 comments on commit 22de6fa

Please sign in to comment.