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

Function resolve

path/resolve.ts:28–32  ·  view source on GitHub ↗
(...pathSegments: string[])

Source from the content-addressed store, hash-verified

26 * @returns The resolved path.
27 */
28export function resolve(...pathSegments: string[]): string {
29 return isWindows
30 ? windowsResolve(...pathSegments)
31 : posixResolve(...pathSegments);
32}

Callers 15

mainFunction · 0.90
resolve_test.tsFile · 0.90
fromOptionsMethod · 0.90
createFunction · 0.90
copyFunction · 0.90
copySyncFunction · 0.90
expandGlobFunction · 0.90
resolveFromRootFunction · 0.90
expandGlobSyncFunction · 0.90
walk_test.tsFile · 0.90
assertWalkPathsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected