MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / Ftp

Function Ftp

src/fileSystem/ftp.js:346–356  ·  view source on GitHub ↗
(
	path,
	host,
	port,
	username,
	password,
	security,
	mode,
)

Source from the content-addressed store, hash-verified

344}
345
346export default function Ftp(
347 path,
348 host,
349 port,
350 username,
351 password,
352 security,
353 mode,
354) {
355 return new FtpClient(path, host, port, username, password, security, mode);
356}
357
358Ftp.fromUrl = (url) => {
359 const { username, password, hostname, pathname, port, query } =

Callers 1

addFtpFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected