Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / collection / findLast.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/collection/findLast.js b/node_modules/grunt-legacy-log/node_modules/lodash/collection/findLast.js
new file mode 100644 (file)
index 0000000..75dbadc
--- /dev/null
@@ -0,0 +1,25 @@
+var baseEachRight = require('../internal/baseEachRight'),
+    createFind = require('../internal/createFind');
+
+/**
+ * This method is like `_.find` except that it iterates over elements of
+ * `collection` from right to left.
+ *
+ * @static
+ * @memberOf _
+ * @category Collection
+ * @param {Array|Object|string} collection The collection to search.
+ * @param {Function|Object|string} [predicate=_.identity] The function invoked
+ *  per iteration.
+ * @param {*} [thisArg] The `this` binding of `predicate`.
+ * @returns {*} Returns the matched element, else `undefined`.
+ * @example
+ *
+ * _.findLast([1, 2, 3, 4], function(n) {
+ *   return n % 2 == 1;
+ * });
+ * // => 3
+ */
+var findLast = createFind(baseEachRight, true);
+
+module.exports = findLast;