Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/4.17.15.html
Original file line number Diff line number Diff line change
Expand Up @@ -4691,7 +4691,7 @@ <h4>Example</h4>
<div>
<h3 id="pick"><a href="#pick" class="fa fa-link"></a><code>_.pick(object, [paths])</code></h3>
<p><a href="https://github.com/lodash/lodash/blob/4.17.15/lodash.js#L13559">source</a> <a href="https://www.npmjs.com/package/lodash.pick">npm package</a></p>
<p>Creates an object composed of the picked <code>object</code> properties.</p>
<p>The opposite of <a href="#omit"><code>_.omit</code></a>; creates an object composed of the picked <code>object</code> properties.</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you make it align more with the omit flavor and do:

; this method creates

<h4>Since</h4>
<p>0.1.0</p>
<h4>Arguments</h4>
Expand All @@ -4708,7 +4708,7 @@ <h4>Example</h4>
<div>
<h3 id="pickBy"><a href="#pickBy" class="fa fa-link"></a><code>_.pickBy(object, [predicate=_.identity])</code></h3>
<p><a href="https://github.com/lodash/lodash/blob/4.17.15/lodash.js#L13581">source</a> <a href="https://www.npmjs.com/package/lodash.pickby">npm package</a></p>
<p>Creates an object composed of the <code>object</code> properties <code>predicate</code> returns
<p>The opposite of <a href="#omitBy"><code>_.omitBy</code></a>; creates an object composed of the <code>object</code> properties <code>predicate</code> returns
truthy for. The predicate is invoked with two arguments: <em>(value, key)</em>.</p>
<h4>Since</h4>
<p>4.0.0</p>
Expand Down