Bump to v4.14.0.

This commit is contained in:
John-David Dalton
2016-07-24 09:52:33 -07:00
parent 295d8cf415
commit a8d3718760
253 changed files with 2469 additions and 1808 deletions

View File

@@ -31,10 +31,10 @@ var nativeMax = Math.max;
* _.includes([1, 2, 3], 1, 2);
* // => false
*
* _.includes({ 'user': 'fred', 'age': 40 }, 'fred');
* _.includes({ 'a': 1, 'b': 2 }, 1);
* // => true
*
* _.includes('pebbles', 'eb');
* _.includes('abcd', 'bc');
* // => true
*/
function includes(collection, value, fromIndex, guard) {