Skip to content

Commit 955537d

Browse files
committed
Bump to v4.17.4.
1 parent c7a7540 commit 955537d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

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

33
The [Lodash](https://lodash.com/) library exported as [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules.
44

@@ -27,4 +27,4 @@ require({
2727
});
2828
```
2929

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

_customOmitClone.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ define(['./isPlainObject'], function(isPlainObject) {
1212
* @param {string} key The key of the property to inspect.
1313
* @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
1414
*/
15-
function customOmitClone(value, key) {
16-
return (key !== undefined && isPlainObject(value)) ? undefined : value;
15+
function customOmitClone(value) {
16+
return isPlainObject(value) ? undefined : value;
1717
}
1818

1919
return customOmitClone;

main.js

Lines changed: 3 additions & 3 deletions
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
/** Used as the size to enable large array optimizations. */
1919
var LARGE_ARRAY_SIZE = 200;
@@ -5633,8 +5633,8 @@
56335633
* @param {string} key The key of the property to inspect.
56345634
* @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
56355635
*/
5636-
function customOmitClone(value, key) {
5637-
return (key !== undefined && isPlainObject(value)) ? undefined : value;
5636+
function customOmitClone(value) {
5637+
return isPlainObject(value) ? undefined : value;
56385638
}
56395639

56405640
/**

package.json

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

0 commit comments

Comments
 (0)