You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed this line is only used here, you can declare it here instead of up top since you're not appending to it or anything.
Otherwise you're initializing it as an empty array only to overwrite it with the value from your .filter().
const lineArray = data.toString().split("\n");
The text was updated successfully, but these errors were encountered:
lFinder/bin/index.js
Line 40 in 59729ee
I noticed this line is only used here, you can declare it here instead of up top since you're not appending to it or anything.
Otherwise you're initializing it as an empty array only to overwrite it with the value from your
.filter()
.const lineArray = data.toString().split("\n");
The text was updated successfully, but these errors were encountered: