Fix eslint errors

This commit is contained in:
Guillaume Gomez 2022-11-04 20:26:42 +01:00 committed by Michael Howell
parent f916681d8d
commit 5db516b809

View File

@ -99,6 +99,7 @@ function onEach(arr, func, reversed) {
* @param {function(?)} func - The callback
* @param {boolean} [reversed] - Whether to iterate in reverse
*/
// eslint-disable-next-line no-unused-vars
function onEachLazy(lazyArray, func, reversed) {
return onEach(
Array.prototype.slice.call(lazyArray),