Bump to v4.0.8.

This commit is contained in:
John-David Dalton
2016-04-12 23:44:05 -07:00
parent ca089f6d60
commit 5bd01fbdbc
13 changed files with 70 additions and 109 deletions

View File

@@ -1,5 +1,5 @@
/**
* lodash 4.0.7 (Custom Build) <https://lodash.com/>
* lodash 4.0.8 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright jQuery Foundation and other contributors <https://jquery.org/>
* Released under MIT license <https://lodash.com/license>
@@ -90,24 +90,10 @@ function baseProperty(key) {
* @param {Object} source The object to copy properties from.
* @param {Array} props The property identifiers to copy.
* @param {Object} [object={}] The object to copy properties to.
* @returns {Object} Returns `object`.
*/
function copyObject(source, props, object) {
return copyObjectWith(source, props, object);
}
/**
* This function is like `copyObject` except that it accepts a function to
* customize copied values.
*
* @private
* @param {Object} source The object to copy properties from.
* @param {Array} props The property identifiers to copy.
* @param {Object} [object={}] The object to copy properties to.
* @param {Function} [customizer] The function to customize copied values.
* @returns {Object} Returns `object`.
*/
function copyObjectWith(source, props, object, customizer) {
function copyObject(source, props, object, customizer) {
object || (object = {});
var index = -1,