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

View File

@@ -1,5 +1,5 @@
import arrayEachRight from './.internal/arrayEachRight.js';
import baseEachRight from './.internal/baseEachRight.js';
import arrayEachRight from './.internal/arrayEachRight.js'
import baseEachRight from './.internal/baseEachRight.js'
/**
* This method is like `forEach` except that it iterates over elements of
@@ -14,12 +14,12 @@ import baseEachRight from './.internal/baseEachRight.js';
* @see forEach, forIn, forInRight, forOwn, forOwnRight
* @example
*
* forEachRight([1, 2], value => console.log(value));
* forEachRight([1, 2], value => console.log(value))
* // => Logs `2` then `1`.
*/
function forEachRight(collection, iteratee) {
const func = Array.isArray(collection) ? arrayEachRight : baseEachRight;
return func(collection, iteratee);
const func = Array.isArray(collection) ? arrayEachRight : baseEachRight
return func(collection, iteratee)
}
export default forEachRight;
export default forEachRight