frylo
Results
1
issues of
frylo
I've already found solution. ```js Ftp.prototype.rename = function(from, to, callback) { this.raw("rnfr", from, err => { if (err) { return callback(err); } this.raw("rnto", to, callback); }); }; ``` Here, functions...