Add related function for each module. [closes #2932]

This commit is contained in:
Bert Verhelst
2017-01-16 01:27:42 +01:00
committed by John-David Dalton
parent b856263af6
commit 401016d260
85 changed files with 85 additions and 16 deletions

View File

@@ -11,6 +11,7 @@ import unzipWith from './unzipWith.js';
* @param {Function} iteratee The function to combine
* grouped values.
* @returns {Array} Returns the new array of grouped elements.
* @see zip, zipObject, zipObjectDeep, zipWith, unzip, unzipWith
* @example
*
* zipWith([1, 2], [10, 20], [100, 200], (a, b, c) => a + b + c);