MCPcopy Create free account
hub / github.com/Effect-TS/effect / link

Function link

packages/platform/deno/src/DenoFileSystem.ts:88–89  ·  view source on GitHub ↗
(existingPath, newPath)

Source from the content-addressed store, hash-verified

86 )
87
88const link: FileSystem.FileSystem["link"] = (existingPath, newPath) =>
89 tryPromise("link", existingPath, () => Deno.link(existingPath, newPath))
90
91const makeDirectory: FileSystem.FileSystem["makeDirectory"] = (path, options) =>
92 tryPromise("makeDirectory", path, () =>

Callers

nothing calls this directly

Calls 1

tryPromiseFunction · 0.70

Tested by

no test coverage detected