diff --git a/lodash.js b/lodash.js index e77376aaf..f29d58873 100644 --- a/lodash.js +++ b/lodash.js @@ -621,10 +621,7 @@ * // => alerts each number in turn... */ var forEach = createIterator(baseIteratorOptions, { - 'top': - 'if (callback && thisArg) {\n' + - ' callback = bind(callback, thisArg)\n' + - '}' + 'top': 'if (thisArg) callback = bind(callback, thisArg)' }); /**