Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

8
zip.js
View File

@@ -1,4 +1,4 @@
import unzip from './unzip.js';
import unzip from './unzip.js'
/**
* Creates an array of grouped elements, the first of which contains the
@@ -12,11 +12,11 @@ import unzip from './unzip.js';
* @see unzip, unzipWith, zipObject, zipObjectDeep, zipWith
* @example
*
* zip(['a', 'b'], [1, 2], [true, false]);
* zip(['a', 'b'], [1, 2], [true, false])
* // => [['a', 1, true], ['b', 2, false]]
*/
function zip(...arrays) {
return unzip(arrays);
return unzip(arrays)
}
export default zip;
export default zip