@@ -4968,7 +4968,7 @@ <h4>Example</h4>
49684968<h2><code>“Seq” Methods</code></h2>
49694969<div>
49704970<h3 id="lodash"><a href="#lodash" class="fa fa-link"></a><code>_(value)</code></h3>
4971- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1690)
4971+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1690">source</a></p>
49724972<p>Creates a <code>lodash</code> object which wraps <code>value</code> to enable implicit method
49734973chain sequences. Methods that operate on and return arrays, collections,
49744974and functions can be chained together. Methods that retrieve a single value
@@ -5080,7 +5080,7 @@ <h4>Example</h4>
50805080</div>
50815081<div>
50825082<h3 id="chain"><a href="#chain" class="fa fa-link"></a><code>_.chain(value)</code></h3>
5083- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8801)
5083+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8801">source</a></p>
50845084<p>Creates a <code>lodash</code> wrapper instance that wraps <code>value</code> with explicit method
50855085chain sequences enabled. The result of such sequences must be unwrapped
50865086with <code>_#value</code>.</p>
@@ -5098,7 +5098,7 @@ <h4>Example</h4>
50985098</div>
50995099<div>
51005100<h3 id="tap"><a href="#tap" class="fa fa-link"></a><code>_.tap(value, interceptor)</code></h3>
5101- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8830)
5101+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8830">source</a></p>
51025102<p>This method invokes <code>interceptor</code> and returns <code>value</code>. The interceptor
51035103is invoked with one argument; <em>(value)</em>. The purpose of this method is to
51045104"tap into" a method chain sequence in order to modify intermediate results.</p>
@@ -5117,7 +5117,7 @@ <h4>Example</h4>
51175117</div>
51185118<div>
51195119<h3 id="thru"><a href="#thru" class="fa fa-link"></a><code>_.thru(value, interceptor)</code></h3>
5120- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8858)
5120+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8858">source</a></p>
51215121<p>This method is like <a href="#tap"><code>_.tap</code></a> except that it returns the result of <code>interceptor</code>.
51225122The purpose of this method is to "pass thru" values replacing intermediate
51235123results in a method chain sequence.</p>
@@ -5136,7 +5136,7 @@ <h4>Example</h4>
51365136</div>
51375137<div>
51385138<h3 id="prototype-Symbol-iterator"><a href="#prototype-Symbol-iterator" class="fa fa-link"></a><code>_.prototype[Symbol.iterator]()</code></h3>
5139- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9013)
5139+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9013">source</a></p>
51405140<p>Enables the wrapper to be iterable.</p>
51415141<h4>Since</h4>
51425142<p>4.0.0</p>
@@ -5148,7 +5148,7 @@ <h4>Example</h4>
51485148</div>
51495149<div>
51505150<h3 id="prototype-at"><a href="#prototype-at" class="fa fa-link"></a><code>_.prototype.at([paths])</code></h3>
5151- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8878)
5151+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8878">source</a></p>
51525152<p>This method is the wrapper version of <a href="#at"><code>_.at</code></a>.</p>
51535153<h4>Since</h4>
51545154<p>1.0.0</p>
@@ -5164,7 +5164,7 @@ <h4>Example</h4>
51645164</div>
51655165<div>
51665166<h3 id="prototype-chain"><a href="#prototype-chain" class="fa fa-link"></a><code>_.prototype.chain()</code></h3>
5167- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8929)
5167+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8929">source</a></p>
51685168<p>Creates a <code>lodash</code> wrapper instance with explicit method chain sequences enabled.</p>
51695169<h4>Since</h4>
51705170<p>0.1.0</p>
@@ -5176,7 +5176,7 @@ <h4>Example</h4>
51765176</div>
51775177<div>
51785178<h3 id="prototype-commit"><a href="#prototype-commit" class="fa fa-link"></a><code>_.prototype.commit()</code></h3>
5179- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8959)
5179+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8959">source</a></p>
51805180<p>Executes the chain sequence and returns the wrapped result.</p>
51815181<h4>Since</h4>
51825182<p>3.2.0</p>
@@ -5188,7 +5188,7 @@ <h4>Example</h4>
51885188</div>
51895189<div>
51905190<h3 id="prototype-next"><a href="#prototype-next" class="fa fa-link"></a><code>_.prototype.next()</code></h3>
5191- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8985)
5191+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L8985">source</a></p>
51925192<p>Gets the next value on a wrapped object following the
51935193<a href="https://mdn.io/iteration_protocols#iterator">iterator protocol</a>.</p>
51945194<h4>Since</h4>
@@ -5201,7 +5201,7 @@ <h4>Example</h4>
52015201</div>
52025202<div>
52035203<h3 id="prototype-plant"><a href="#prototype-plant" class="fa fa-link"></a><code>_.prototype.plant(value)</code></h3>
5204- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9041)
5204+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9041">source</a></p>
52055205<p>Creates a clone of the chain sequence planting <code>value</code> as the wrapped value.</p>
52065206<h4>Since</h4>
52075207<p>3.2.0</p>
@@ -5217,7 +5217,7 @@ <h4>Example</h4>
52175217</div>
52185218<div>
52195219<h3 id="prototype-reverse"><a href="#prototype-reverse" class="fa fa-link"></a><code>_.prototype.reverse()</code></h3>
5220- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9081)
5220+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9081">source</a></p>
52215221<p>This method is the wrapper version of <a href="#reverse"><code>_.reverse</code></a>.
52225222<br>
52235223<br>
@@ -5232,7 +5232,7 @@ <h4>Example</h4>
52325232</div>
52335233<div>
52345234<h3 id="prototype-value"><a href="#prototype-value" class="fa fa-link"></a><code>_.prototype.value()</code></h3>
5235- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9113)
5235+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L9113">source</a></p>
52365236<p>Executes the chain sequence to resolve the unwrapped value.</p>
52375237<h4>Since</h4>
52385238<p>0.1.0</p>
@@ -6446,13 +6446,13 @@ <h4>Example</h4>
64466446<div>
64476447<h2><code>Properties</code></h2>
64486448<div>
6449- <h3 id="VERSION"><a href="#VERSION" class="fa fa-link"></a><a href="#VERSION">< code>_.VERSION</code></a ></h3>
6450- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L16958)
6449+ <h3 id="VERSION"><a href="#VERSION" class="fa fa-link"></a><code>_.VERSION</code></h3>
6450+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L16958">source</a></p>
64516451<p>(string): The semantic version number.</p>
64526452
64536453</div>
64546454<div>
6455- <h3 id="templateSettings"><a href="#templateSettings" class="fa fa-link"></a><a href="#templateSettings">< code>_.templateSettings</code></a ></h3>
6455+ <h3 id="templateSettings"><a href="#templateSettings" class="fa fa-link"></a><code>_.templateSettings</code></h3>
64566456<p><a href="https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1759">source</a> <a href="https://www.npmjs.com/package/lodash.templatesettings">npm package</a></p>
64576457<p>(Object): By default, the template delimiters used by lodash are like those in
64586458embedded Ruby <em>(ERB)</em> as well as ES2015 template strings. Change the
@@ -6461,31 +6461,31 @@ <h3 id="templateSettings"><a href="#templateSettings" class="fa fa-link"></a><a
64616461</div>
64626462<div>
64636463<h3 id="templateSettings-escape"><a href="#templateSettings-escape" class="fa fa-link"></a><code>_.templateSettings.escape</code></h3>
6464- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1767)
6464+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1767">source</a></p>
64656465<p>(RegExp): Used to detect <code>data</code> property values to be HTML-escaped.</p>
64666466
64676467</div>
64686468<div>
64696469<h3 id="templateSettings-evaluate"><a href="#templateSettings-evaluate" class="fa fa-link"></a><code>_.templateSettings.evaluate</code></h3>
6470- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1775)
6470+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1775">source</a></p>
64716471<p>(RegExp): Used to detect code to be evaluated.</p>
64726472
64736473</div>
64746474<div>
64756475<h3 id="templateSettings-imports"><a href="#templateSettings-imports" class="fa fa-link"></a><code>_.templateSettings.imports</code></h3>
6476- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1799)
6476+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1799">source</a></p>
64776477<p>(Object): Used to import variables into the compiled template.</p>
64786478
64796479</div>
64806480<div>
64816481<h3 id="templateSettings-interpolate"><a href="#templateSettings-interpolate" class="fa fa-link"></a><code>_.templateSettings.interpolate</code></h3>
6482- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1783)
6482+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1783">source</a></p>
64836483<p>(RegExp): Used to detect <code>data</code> property values to inject.</p>
64846484
64856485</div>
64866486<div>
64876487<h3 id="templateSettings-variable"><a href="#templateSettings-variable" class="fa fa-link"></a><code>_.templateSettings.variable</code></h3>
6488- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1791)
6488+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1791">source</a></p>
64896489<p>(string): Used to reference the data object in the template text.</p>
64906490
64916491</div>
@@ -6494,7 +6494,7 @@ <h3 id="templateSettings-variable"><a href="#templateSettings-variable" class="f
64946494<h2><code>Methods</code></h2>
64956495<div>
64966496<h3 id="templateSettings-imports-_"><a href="#templateSettings-imports-_" class="fa fa-link"></a><code>_.templateSettings.imports._</code></h3>
6497- [source]( https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1807)
6497+ <p><a href=" https://github.com/lodash/lodash/blob/4.17.21/lodash.js#L1807">source</a></p>
64986498<p>A reference to the <code>lodash</code> function.</p>
64996499
65006500</div>
0 commit comments