mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Bump to v3.10.1.
This commit is contained in:
@@ -3,7 +3,7 @@ import restParam from '../function/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 _
|
||||
|
||||
@@ -23,7 +23,7 @@ import toPath from '../internal/toPath';
|
||||
*/
|
||||
function propertyOf(object) {
|
||||
return function(path) {
|
||||
return baseGet(object, toPath(path), path + '');
|
||||
return baseGet(object, toPath(path), (path + ''));
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ var nativeCeil = Math.ceil,
|
||||
|
||||
/**
|
||||
* 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