MCPcopy Create free account
hub / github.com/denoland/std / join

Function join

path/join.ts:29–31  ·  view source on GitHub ↗
(path: string | URL, ...paths: string[])

Source from the content-addressed store, hash-verified

27 * @returns The joined and normalized path.
28 */
29export function join(path: string | URL, ...paths: string[]): string {
30 return isWindows ? windowsJoin(path, ...paths) : posixJoin(path, ...paths);
31}

Callers 15

serveDirIndexFunction · 0.90
createServeDirResponseFunction · 0.90
join_test.tsFile · 0.90
fromTestFileMethod · 0.90
snapshot_test.tsFile · 0.90
testFailedAssertionFunction · 0.90
runTestFunction · 0.90
copyDirFunction · 0.90
copyDirSyncFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected