Version 1
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _basePickBy.js
diff --git a/node_modules/grunt-legacy-util/node_modules/lodash/_basePickBy.js b/node_modules/grunt-legacy-util/node_modules/lodash/_basePickBy.js
new file mode 100644 (file)
index 0000000..37c4943
--- /dev/null
@@ -0,0 +1,21 @@
+var baseForIn = require('./_baseForIn');
+
+/**
+ * The base implementation of  `_.pickBy` without support for iteratee shorthands.
+ *
+ * @private
+ * @param {Object} object The source object.
+ * @param {Function} predicate The function invoked per property.
+ * @returns {Object} Returns the new object.
+ */
+function basePickBy(object, predicate) {
+  var result = {};
+  baseForIn(object, function(value, key) {
+    if (predicate(value, key)) {
+      result[key] = value;
+    }
+  });
+  return result;
+}
+
+module.exports = basePickBy;