ftpd
Version:
Node FTP Server
10 lines (8 loc) • 306 B
JavaScript
function pathEscape(text) {
// Rules for quoting: RFC 959 -> Appendix II -> Directory Commands
// (http://www.w3.org/Protocols/rfc959/A2_DirectoryCommands.html)
// -> Reply Codes -> search for "embedded double-quotes"
text = text.replace(/"/g, '""');
return text;
}
module.exports = pathEscape;