Skip to content

Commit

Permalink
Underscore.js 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Jul 13, 2011
1 parent c1a5562 commit 39b07d7
Show file tree
Hide file tree
Showing 6 changed files with 186 additions and 133 deletions.
2 changes: 1 addition & 1 deletion docs/docco.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ table td {
}
pre, tt, code {
font-size: 12px; line-height: 18px;
font-family: Menlo, Monaco, Consolas, "Lucida Console", monospace;
font-family: Monaco, Consolas, "Lucida Console", monospace;
margin: 0; padding: 0;
}

Expand Down
210 changes: 114 additions & 96 deletions docs/underscore.html

Large diffs are not rendered by default.

66 changes: 50 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ <h2>Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and u

<table>
<tr>
<td><a href="underscore.js">Development Version (1.1.6)</a></td>
<td><i>27kb, Uncompressed with Comments</i></td>
<td><a href="underscore.js">Development Version (1.1.7)</a></td>
<td><i>28kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (1.1.6)</a></td>
<td><a href="underscore-min.js">Production Version (1.1.7)</a></td>
<td><i>3kb, Minified and Gzipped</i></td>
</tr>
</table>
Expand All @@ -149,8 +149,9 @@ <h2>Table of Contents</h2>
<b>Arrays</b>
<br />
<span class="methods"><a href="#first">first</a>, <a href="#rest">rest</a>, <a href="#last">last</a>,
<a href="#compact">compact</a>, <a href="#flatten">flatten</a>, <a href="#without">without</a>, <a href="#uniq">uniq</a>,
<a href="#intersect">intersect</a>, <a href="#zip">zip</a>, <a href="#indexOf">indexOf</a>,
<a href="#compact">compact</a>, <a href="#flatten">flatten</a>, <a href="#without">without</a>,
<a href="#union">union</a>, <a href="#intersection">intersection</a>, <a href="#difference">difference</a>,
<a href="#uniq">uniq</a>, <a href="#zip">zip</a>, <a href="#indexOf">indexOf</a>,
<a href="#lastIndexOf">lastIndexOf</a>, <a href="#range">range</a></span>
</p>

Expand Down Expand Up @@ -557,28 +558,50 @@ <h2>Array Functions</h2>
=&gt; [2, 3, 4]
</pre>

<p id="uniq">
<b class="header">uniq</b><code>_.uniq(array, [isSorted])</code>
<span class="alias">Alias: <b>unique</b></span>
<p id="union">
<b class="header">union</b><code>_.union(*arrays)</code>
<br />
Produces a duplicate-free version of the <b>array</b>, using <i>===</i> to test
object equality. If you know in advance that the <b>array</b> is sorted,
passing <i>true</i> for <b>isSorted</b> will run a much faster algorithm.
Computes the union of the passed-in <b>arrays</b>: the list of unique items,
in order, that are present in one or more of the <b>arrays</b>.
</p>
<pre>
_.uniq([1, 2, 1, 3, 1, 4]);
=&gt; [1, 2, 3, 4]
_.union([1, 2, 3], [101, 2, 1, 10], [2, 1]);
=&gt; [1, 2, 3, 101, 10]
</pre>

<p id="intersect">
<b class="header">intersect</b><code>_.intersect(*arrays)</code>
<p id="intersection">
<b class="header">intersection</b><code>_.intersection(*arrays)</code>
<br />
Computes the list of values that are the intersection of all the <b>arrays</b>.
Each value in the result is present in each of the <b>arrays</b>.
</p>
<pre>
_.intersect([1, 2, 3], [101, 2, 1, 10], [2, 1]);
_.intersection([1, 2, 3], [101, 2, 1, 10], [2, 1]);
=&gt; [1, 2]
</pre>

<p id="difference">
<b class="header">difference</b><code>_.difference(array, other)</code>
<br />
Similar to <b>without</b>, but returns the values from <b>array</b> that
are not present in <b>other</b>.
</p>
<pre>
_.difference([1, 2, 3, 4, 5], [5, 2, 10]);
=&gt; [1, 3, 4]
</pre>

<p id="uniq">
<b class="header">uniq</b><code>_.uniq(array, [isSorted])</code>
<span class="alias">Alias: <b>unique</b></span>
<br />
Produces a duplicate-free version of the <b>array</b>, using <i>===</i> to test
object equality. If you know in advance that the <b>array</b> is sorted,
passing <i>true</i> for <b>isSorted</b> will run a much faster algorithm.
</p>
<pre>
_.uniq([1, 2, 1, 3, 1, 4]);
=&gt; [1, 2, 3, 4]
</pre>

<p id="zip">
Expand Down Expand Up @@ -1257,6 +1280,17 @@ <h2>Links &amp; Suggested Reading</h2>

<h2 id="changelog">Change Log</h2>

<p>
<b class="header">1.1.7</b> &mdash; <small><i>July 13, 2011</i></small><br />
Added <tt>_.groupBy</tt>, which aggregates a collection into groups of like items.
Added <tt>_.untion</tt> and <tt>_.difference</tt>, to complement the
(re-named) <tt>_.intersection</tt>.
Various improvements for support of sparse arrays.
<tt>_.toArray</tt> now returns a clone, if directly passed an array.
<tt>_.functions</tt> now also returns the names of functions that are present
in the prototype chain.
</p>

<p>
<b class="header">1.1.6</b> &mdash; <small><i>April 18, 2011</i></small><br />
Added <tt>_.after</tt>, which will return a function that only runs after
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"dependencies" : [],
"repository" : {"type": "git", "url": "git://github.com/documentcloud/underscore.git"},
"main" : "underscore.js",
"version" : "1.1.6"
"version" : "1.1.7"
}
Loading

0 comments on commit 39b07d7

Please sign in to comment.