From bbf57d9c3672bb15df5f0b2e128b768b5a3e0d4b Mon Sep 17 00:00:00 2001 From: orangejuice Date: Tue, 20 Aug 2019 18:23:11 +0200 Subject: [PATCH 1/2] Update 4.17.15.html --- docs/4.17.15.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/4.17.15.html b/docs/4.17.15.html index 1cf54a11..1e2518f4 100644 --- a/docs/4.17.15.html +++ b/docs/4.17.15.html @@ -4691,7 +4691,7 @@

Example

_.pick(object, [paths])

source npm package

-

Creates an object composed of the picked object properties.

+

The opposite of _.omit; creates an object composed of the picked object properties.

Since

0.1.0

Arguments

@@ -4708,7 +4708,7 @@

Example

_.pickBy(object, [predicate=_.identity])

source npm package

-

Creates an object composed of the object properties predicate returns +

The opposite of _.omitBy; creates an object composed of the object properties predicate returns truthy for. The predicate is invoked with two arguments: (value, key).

Since

4.0.0

From 920ea82fab421d2f32e96c74ca37d3632a4c3696 Mon Sep 17 00:00:00 2001 From: orangejuice Date: Wed, 21 Aug 2019 00:16:47 +0200 Subject: [PATCH 2/2] Align with omit and omitBy --- docs/4.17.15.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/4.17.15.html b/docs/4.17.15.html index 1e2518f4..494f1f00 100644 --- a/docs/4.17.15.html +++ b/docs/4.17.15.html @@ -4691,7 +4691,7 @@

Example

_.pick(object, [paths])

source npm package

-

The opposite of _.omit; creates an object composed of the picked object properties.

+

The opposite of _.omit; this method creates an object composed of the picked object properties.

Since

0.1.0

Arguments

@@ -4708,7 +4708,7 @@

Example

_.pickBy(object, [predicate=_.identity])

source npm package

-

The opposite of _.omitBy; creates an object composed of the object properties predicate returns +

The opposite of _.omitBy; this method creates an object composed of the object properties predicate returns truthy for. The predicate is invoked with two arguments: (value, key).

Since

4.0.0