(js/css) Update generated files

This commit is contained in:
InverseBot
2017-01-01 01:20:37 -05:00
parent e2ec8af0db
commit d5e04be1df
2 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -12,7 +12,7 @@
var undefined;
/** Used as the semantic version number. */
var VERSION = '4.17.3';
var VERSION = '4.17.4';
/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
@@ -5632,8 +5632,8 @@
* @param {string} key The key of the property to inspect.
* @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
*/
function customOmitClone(value, key) {
return (key !== undefined && isPlainObject(value)) ? undefined : value;
function customOmitClone(value) {
return isPlainObject(value) ? undefined : value;
}
/**