summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/overEvery.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/overEvery.js')
-rw-r--r--tools/eslint/node_modules/lodash/overEvery.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/lodash/overEvery.js b/tools/eslint/node_modules/lodash/overEvery.js
new file mode 100644
index 0000000000..bad7a5a726
--- /dev/null
+++ b/tools/eslint/node_modules/lodash/overEvery.js
@@ -0,0 +1,28 @@
+var arrayEvery = require('./_arrayEvery'),
+ createOver = require('./_createOver');
+
+/**
+ * Creates a function that checks if **all** of the `predicates` return
+ * truthy when invoked with the arguments provided to the created function.
+ *
+ * @static
+ * @memberOf _
+ * @category Util
+ * @param {...(Function|Function[])} predicates The predicates to check.
+ * @returns {Function} Returns the new function.
+ * @example
+ *
+ * var func = _.overEvery(Boolean, isFinite);
+ *
+ * func('1');
+ * // => true
+ *
+ * func(null);
+ * // => false
+ *
+ * func(NaN);
+ * // => false
+ */
+var overEvery = createOver(arrayEvery);
+
+module.exports = overEvery;