Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / overEvery.js
diff --git a/node_modules/uncss/node_modules/lodash/overEvery.js b/node_modules/uncss/node_modules/lodash/overEvery.js
new file mode 100644 (file)
index 0000000..6c7958e
--- /dev/null
@@ -0,0 +1,28 @@
+var arrayEvery = require('./internal/arrayEvery'),
+    createOver = require('./internal/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;