mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Bump to v3.10.1.
This commit is contained in:
@@ -5,7 +5,7 @@ define(['../lang/isError', '../function/restParam'], function(isError, restParam
|
||||
|
||||
/**
|
||||
* Attempts to invoke `func`, returning either the result or the caught error
|
||||
* object. Any additional arguments are provided to `func` when it is invoked.
|
||||
* object. Any additional arguments are provided to `func` when it's invoked.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
|
||||
@@ -22,7 +22,7 @@ define(['../internal/baseGet', '../internal/toPath'], function(baseGet, toPath)
|
||||
*/
|
||||
function propertyOf(object) {
|
||||
return function(path) {
|
||||
return baseGet(object, toPath(path), path + '');
|
||||
return baseGet(object, toPath(path), (path + ''));
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ define(['../internal/isIterateeCall'], function(isIterateeCall) {
|
||||
|
||||
/**
|
||||
* Creates an array of numbers (positive and/or negative) progressing from
|
||||
* `start` up to, but not including, `end`. If `end` is not specified it is
|
||||
* `start` up to, but not including, `end`. If `end` is not specified it's
|
||||
* set to `start` with `start` then set to `0`. If `end` is less than `start`
|
||||
* a zero-length range is created unless a negative `step` is specified.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user