Comparing version 4.17.10 to 4.17.11
@@ -77,3 +77,3 @@ import assignMergeValue from './_assignMergeValue.js'; | ||
} | ||
else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) { | ||
else if (!isObject(objValue) || isFunction(objValue)) { | ||
newValue = initCloneObject(srcValue); | ||
@@ -80,0 +80,0 @@ } |
/** Used to detect strings that need a more robust regexp to match words. */ | ||
var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; | ||
var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; | ||
@@ -4,0 +4,0 @@ /** |
@@ -10,7 +10,9 @@ /** | ||
function safeGet(object, key) { | ||
return key == '__proto__' | ||
? undefined | ||
: object[key]; | ||
if (key == '__proto__') { | ||
return; | ||
} | ||
return object[key]; | ||
} | ||
export default safeGet; |
@@ -48,3 +48,3 @@ /** | ||
/** Used as the semantic version number. */ | ||
var VERSION = '4.17.10'; | ||
var VERSION = '4.17.11'; | ||
@@ -51,0 +51,0 @@ /** Used to compose bitmasks for function metadata. */ |
{ | ||
"name": "lodash-es", | ||
"version": "4.17.10", | ||
"version": "4.17.11", | ||
"description": "Lodash exported as ES modules.", | ||
@@ -5,0 +5,0 @@ "keywords": "es6, modules, stdlib, util", |
@@ -1,2 +0,2 @@ | ||
# lodash-es v4.17.10 | ||
# lodash-es v4.17.11 | ||
@@ -10,2 +10,2 @@ The [Lodash](https://lodash.com/) library exported as [ES](http://www.ecma-international.org/ecma-262/6.0/) modules. | ||
See the [package source](https://github.com/lodash/lodash/tree/4.17.10-es) for more details. | ||
See the [package source](https://github.com/lodash/lodash/tree/4.17.11-es) for more details. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19585
628240