Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
candid82 committed Jul 6, 2024
1 parent 3310f21 commit 87b8f44
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/procs.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
PRINT_IF_NOT_NIL
)

const VERSION = "v1.3.5"
const VERSION = "v1.4.0"

const (
CLJ Dialect = iota
Expand Down
14 changes: 14 additions & 0 deletions docs/joker.io.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ <h2 id="_index">Index</h2>
<li>
<a href="#pipe">pipe</a>
</li>
<li>
<a href="#read">read</a>
</li>

</ul>
<h2 id="_constants">Constants</h2>
Expand Down Expand Up @@ -84,6 +87,17 @@ <h3 class="Function" id="pipe">pipe</h3>
Returns a vector [reader, writer].</p>


</li>
<li>
<h3 class="Function" id="read">read</h3>
<span class="var-kind Function">Function</span>
<span class="var-added">v1.3.6</span>
<pre class="var-usage"><div><code>(read r n)</code></div>
</pre>
<p class="var-docstr">Reads up to n bytes from IOReader r and returns a string of the read bytes.<br>
May return a shorter (or blank) string if EOF is encountered.</p>


</li>

</ul>
Expand Down
17 changes: 17 additions & 0 deletions docs/joker.url.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ <h2 id="_summary">Summary</h2>
<h2 id="_index">Index</h2>
<ul class="index">
<li>
<a href="#parse-query">parse-query</a>
</li>
<li>
<a href="#path-escape">path-escape</a>
</li>
<li>
Expand All @@ -54,6 +57,20 @@ <h2 id="_variables">Variables</h2>
<h2 id="_functions">Functions, Macros, and Special Forms</h2>
<ul>
<li>
<h3 class="Function" id="parse-query">parse-query</h3>
<span class="var-kind Function">Function</span>
<span class="var-added">v1.3.6</span>
<pre class="var-usage"><div><code>(parse-query s)</code></div>
</pre>
<p class="var-docstr">Parses the URL-encoded query string and returns a map listing the vectors of values specified for each key.<br>
Always returns a non-nil map containing all the valid query parameters found.<br>
Query is expected to be a list of key=value settings separated by ampersands. A setting without<br>
an equals sign is interpreted as a key set to an empty value. Settings containing a non-URL-encoded<br>
semicolon are considered invalid. </p>


</li>
<li>
<h3 class="Function" id="path-escape">path-escape</h3>
<span class="var-kind Function">Function</span>
<span class="var-added">v1.0</span>
Expand Down
2 changes: 1 addition & 1 deletion docs/main.js

Large diffs are not rendered by default.

0 comments on commit 87b8f44

Please sign in to comment.