Bump to v3.6.0.

This commit is contained in:
jdalton
2015-03-24 16:44:49 -07:00
parent 06f6ffa303
commit d58549ce0b
192 changed files with 2218 additions and 1804 deletions

View File

@@ -1,6 +1,5 @@
var baseCallback = require('../internal/baseCallback'),
baseEachRight = require('../internal/baseEachRight'),
baseFind = require('../internal/baseFind');
var baseEachRight = require('../internal/baseEachRight'),
createFind = require('../internal/createFind');
/**
* This method is like `_.find` except that it iterates over elements of
@@ -21,9 +20,6 @@ var baseCallback = require('../internal/baseCallback'),
* });
* // => 3
*/
function findLast(collection, predicate, thisArg) {
predicate = baseCallback(predicate, thisArg, 3);
return baseFind(collection, predicate, baseEachRight);
}
var findLast = createFind(baseEachRight, true);
module.exports = findLast;