lodash.update
Advanced tools
Comparing version
84
index.js
/** | ||
* lodash 4.7.0 (Custom Build) <https://lodash.com/> | ||
* lodash (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="npm" -o ./` | ||
@@ -12,2 +12,5 @@ * Copyright jQuery Foundation and other contributors <https://jquery.org/> | ||
/** Used as references for various `Number` constants. */ | ||
var INFINITY = 1 / 0; | ||
/** `Object#toString` result references. */ | ||
@@ -24,3 +27,4 @@ var symbolTag = '[object Symbol]'; | ||
/** | ||
* Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) | ||
* Used to resolve the | ||
* [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring) | ||
* of values. | ||
@@ -31,24 +35,2 @@ */ | ||
/** | ||
* Casts `value` to `identity` if it's not a function. | ||
* | ||
* @private | ||
* @param {*} value The value to inspect. | ||
* @returns {Function} Returns cast function. | ||
*/ | ||
function baseCastFunction(value) { | ||
return typeof value == 'function' ? value : identity; | ||
} | ||
/** | ||
* Casts `value` to a path array if it's not one. | ||
* | ||
* @private | ||
* @param {*} value The value to inspect. | ||
* @returns {Array} Returns the cast property path array. | ||
*/ | ||
function baseCastPath(value) { | ||
return isArray(value) ? value : stringToPath(value); | ||
} | ||
/** | ||
* The base implementation of `_.get` without support for default values. | ||
@@ -62,3 +44,3 @@ * | ||
function baseGet(object, path) { | ||
path = isKey(path, object) ? [path] : baseCastPath(path); | ||
path = isKey(path, object) ? [path] : castPath(path); | ||
@@ -69,3 +51,3 @@ var index = 0, | ||
while (object != null && index < length) { | ||
object = object[path[index++]]; | ||
object = object[toKey(path[index++])]; | ||
} | ||
@@ -90,2 +72,24 @@ return (index && index == length) ? object : undefined; | ||
/** | ||
* Casts `value` to `identity` if it's not a function. | ||
* | ||
* @private | ||
* @param {*} value The value to inspect. | ||
* @returns {Function} Returns cast function. | ||
*/ | ||
function castFunction(value) { | ||
return typeof value == 'function' ? value : identity; | ||
} | ||
/** | ||
* Casts `value` to a path array if it's not one. | ||
* | ||
* @private | ||
* @param {*} value The value to inspect. | ||
* @returns {Array} Returns the cast property path array. | ||
*/ | ||
function castPath(value) { | ||
return isArray(value) ? value : stringToPath(value); | ||
} | ||
/** | ||
* Checks if `value` is a property name and not a property path. | ||
@@ -99,12 +103,30 @@ * | ||
function isKey(value, object) { | ||
if (isArray(value)) { | ||
return false; | ||
} | ||
var type = typeof value; | ||
if (type == 'number' || type == 'symbol') { | ||
if (type == 'number' || type == 'symbol' || type == 'boolean' || | ||
value == null || isSymbol(value)) { | ||
return true; | ||
} | ||
return !isArray(value) && | ||
(isSymbol(value) || reIsPlainProp.test(value) || !reIsDeepProp.test(value) || | ||
(object != null && value in Object(object))); | ||
return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || | ||
(object != null && value in Object(object)); | ||
} | ||
/** | ||
* Converts `value` to a string key if it's not a string or symbol. | ||
* | ||
* @private | ||
* @param {*} value The value to inspect. | ||
* @returns {string|symbol} Returns the key. | ||
*/ | ||
function toKey(value) { | ||
if (typeof value == 'string' || isSymbol(value)) { | ||
return value; | ||
} | ||
var result = (value + ''); | ||
return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; | ||
} | ||
/** | ||
* Checks if `value` is classified as an `Array` object. | ||
@@ -215,3 +237,3 @@ * | ||
function update(object, path, updater) { | ||
return object == null ? object : baseUpdate(object, path, baseCastFunction(updater)); | ||
return object == null ? object : baseUpdate(object, path, castFunction(updater)); | ||
} | ||
@@ -218,0 +240,0 @@ |
{ | ||
"name": "lodash.update", | ||
"version": "4.7.0", | ||
"version": "4.9.0", | ||
"description": "The lodash method `_.update` exported as a module.", | ||
@@ -18,5 +18,5 @@ "homepage": "https://lodash.com/", | ||
"dependencies": { | ||
"lodash._baseset": "~4.2.0", | ||
"lodash._stringtopath": "~4.7.0" | ||
"lodash._baseset": "~4.3.0", | ||
"lodash._stringtopath": "~4.8.0" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
# lodash.update v4.7.0 | ||
# lodash.update v4.9.0 | ||
@@ -18,2 +18,2 @@ The [lodash](https://lodash.com/) method `_.update` exported as a [Node.js](https://nodejs.org/) module. | ||
See the [documentation](https://lodash.com/docs#update) or [package source](https://github.com/lodash/lodash/blob/4.7.0-npm-packages/lodash.update) for more details. | ||
See the [documentation](https://lodash.com/docs#update) or [package source](https://github.com/lodash/lodash/blob/4.9.0-npm-packages/lodash.update) for more details. |
9772
5.52%234
9.35%+ Added
+ Added
+ Added
- Removed
- Removed
Updated
Updated