Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / internal / baseEachRight.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/internal/baseEachRight.js b/node_modules/grunt-legacy-log/node_modules/lodash/internal/baseEachRight.js
new file mode 100644 (file)
index 0000000..f0520a8
--- /dev/null
@@ -0,0 +1,15 @@
+var baseForOwnRight = require('./baseForOwnRight'),
+    createBaseEach = require('./createBaseEach');
+
+/**
+ * The base implementation of `_.forEachRight` without support for callback
+ * shorthands and `this` binding.
+ *
+ * @private
+ * @param {Array|Object|string} collection The collection to iterate over.
+ * @param {Function} iteratee The function invoked per iteration.
+ * @returns {Array|Object|string} Returns `collection`.
+ */
+var baseEachRight = createBaseEach(baseForOwnRight, true);
+
+module.exports = baseEachRight;