mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 00:27:50 +00:00
Bump to v3.10.0.
This commit is contained in:
@@ -8,13 +8,13 @@ var nativeMax = Math.max,
|
||||
* @private
|
||||
* @param {number} start The start of the view.
|
||||
* @param {number} end The end of the view.
|
||||
* @param {Array} [transforms] The transformations to apply to the view.
|
||||
* @param {Array} transforms The transformations to apply to the view.
|
||||
* @returns {Object} Returns an object containing the `start` and `end`
|
||||
* positions of the view.
|
||||
*/
|
||||
function getView(start, end, transforms) {
|
||||
var index = -1,
|
||||
length = transforms ? transforms.length : 0;
|
||||
length = transforms.length;
|
||||
|
||||
while (++index < length) {
|
||||
var data = transforms[index],
|
||||
|
||||
Reference in New Issue
Block a user