Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance docs #213

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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