Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / baseEach.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/baseEach.js b/node_modules/uncss/node_modules/lodash/internal/baseEach.js
new file mode 100644 (file)
index 0000000..cb549b5
--- /dev/null
@@ -0,0 +1,14 @@
+var baseForOwn = require('./baseForOwn'),
+    createBaseEach = require('./createBaseEach');
+
+/**
+ * The base implementation of `_.forEach` without support for iteratee shorthands.
+ *
+ * @private
+ * @param {Array|Object} collection The collection to iterate over.
+ * @param {Function} iteratee The function invoked per iteration.
+ * @returns {Array|Object} Returns `collection`.
+ */
+var baseEach = createBaseEach(baseForOwn);
+
+module.exports = baseEach;