Rebuild lodash and docs.

This commit is contained in:
John-David Dalton
2016-11-14 20:31:46 -08:00
parent 014982cb2c
commit 26a6117889
7 changed files with 435 additions and 435 deletions

13
dist/lodash.core.js vendored
View File

@@ -13,7 +13,7 @@
var undefined;
/** Used as the semantic version number. */
var VERSION = '4.17.0';
var VERSION = '4.17.1';
/** Error message constants. */
var FUNC_ERROR_TEXT = 'Expected a function';
@@ -1439,15 +1439,6 @@
*/
var setToString = identity;
/**
* 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.
*/
var toKey = String;
/*------------------------------------------------------------------------*/
/**
@@ -3312,7 +3303,7 @@
* // => { 'a': 1, 'c': 3 }
*/
var pick = flatRest(function(object, paths) {
return object == null ? {} : basePick(object, baseMap(paths, toKey));
return object == null ? {} : basePick(object, paths);
});
/**