net-ftp icon indicating copy to clipboard operation
net-ftp copied to clipboard

Prefer String#each_line in Net::FTP#features

Open Maumagnaguagno opened this issue 2 years ago • 0 comments

String#split without a block creates an intermediate array and requires a call to Array#each to iterate. Replace String#split("\n").each with String#each_line, which is more efficient and readable.

Maumagnaguagno avatar Dec 16 '23 17:12 Maumagnaguagno