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

Function chown

packages/platform/deno/src/DenoFileSystem.ts:75–76  ·  view source on GitHub ↗
(path, uid, gid)

Source from the content-addressed store, hash-verified

73const chmod: FileSystem.FileSystem["chmod"] = (path, mode) => tryPromise("chmod", path, () => Deno.chmod(path, mode))
74
75const chown: FileSystem.FileSystem["chown"] = (path, uid, gid) =>
76 tryPromise("chown", path, () => Deno.chown(path, uid, gid))
77
78const glob: FileSystem.FileSystem["glob"] = (pattern, options) =>
79 Effect.map(

Callers

nothing calls this directly

Calls 1

tryPromiseFunction · 0.70

Tested by

no test coverage detected