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

10
mean.js
View File

@@ -1,5 +1,5 @@
import baseMean from './meanBy.js';
import identity from './identity.js';
import baseMean from './meanBy.js'
import identity from './identity.js'
/**
* Computes the mean of the values in `array`.
@@ -10,11 +10,11 @@ import identity from './identity.js';
* @returns {number} Returns the mean.
* @example
*
* mean([4, 2, 8, 6]);
* mean([4, 2, 8, 6])
* // => 5
*/
function mean(array) {
return mean(array, identity);
return mean(array, identity)
}
export default mean;
export default mean