Skip to content

Commit 860d1f9

Browse files
committed
Bump to v4.17.4.
1 parent b93c3b1 commit 860d1f9

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# lodash v4.17.3
1+
# lodash v4.17.4
22

33
The [Lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules.
44

@@ -28,7 +28,7 @@ var at = require('lodash/at');
2828
var curryN = require('lodash/fp/curryN');
2929
```
3030

31-
See the [package source](https://github.com/lodash/lodash/tree/4.17.3-npm) for more details.
31+
See the [package source](https://github.com/lodash/lodash/tree/4.17.4-npm) for more details.
3232

3333
**Note:**<br>
3434
Install [n_](https://www.npmjs.com/package/n_) for Lodash use in the Node.js < 6 REPL.

_customOmitClone.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ var isPlainObject = require('./isPlainObject');
99
* @param {string} key The key of the property to inspect.
1010
* @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
1111
*/
12-
function customOmitClone(value, key) {
13-
return (key !== undefined && isPlainObject(value)) ? undefined : value;
12+
function customOmitClone(value) {
13+
return isPlainObject(value) ? undefined : value;
1414
}
1515

1616
module.exports = customOmitClone;

core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
var undefined;
1414

1515
/** Used as the semantic version number. */
16-
var VERSION = '4.17.3';
16+
var VERSION = '4.17.4';
1717

1818
/** Error message constants. */
1919
var FUNC_ERROR_TEXT = 'Expected a function';

core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lodash.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
var undefined;
1313

1414
/** Used as the semantic version number. */
15-
var VERSION = '4.17.3';
15+
var VERSION = '4.17.4';
1616

1717
/** Used as the size to enable large array optimizations. */
1818
var LARGE_ARRAY_SIZE = 200;
@@ -5632,8 +5632,8 @@
56325632
* @param {string} key The key of the property to inspect.
56335633
* @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
56345634
*/
5635-
function customOmitClone(value, key) {
5636-
return (key !== undefined && isPlainObject(value)) ? undefined : value;
5635+
function customOmitClone(value) {
5636+
return isPlainObject(value) ? undefined : value;
56375637
}
56385638

56395639
/**

lodash.min.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lodash",
3-
"version": "4.17.3",
3+
"version": "4.17.4",
44
"description": "Lodash modular utilities.",
55
"keywords": "modules, stdlib, util",
66
"homepage": "https://lodash.com/",

0 commit comments

Comments
 (0)