Bump to v4.8.0.

This commit is contained in:
John-David Dalton
2016-04-01 23:29:18 -07:00
parent ce0b51888c
commit 723c02dbfa
63 changed files with 222 additions and 149 deletions

View File

@@ -3,13 +3,13 @@ import createOver from './_createOver';
/**
* Creates a function that checks if **any** of the `predicates` return
* truthy when invoked with the arguments provided to the created function.
* truthy when invoked with the arguments it receives.
*
* @static
* @memberOf _
* @since 4.0.0
* @category Util
* @param {...(Function|Function[])} predicates The predicates to check.
* @param {...Function} predicates The predicates to check.
* @returns {Function} Returns the new function.
* @example
*