blob: 586a87cfc06de0205f4d42e53614a854e06d1f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
type Options = { encoding: string };
type Callback = (err: Error | null, path?: string) => void;
export function realpath(
path: string,
options?: Options | Callback,
callback?: Callback,
) {
if (typeof options === "function") {
callback = options;
}
if (!callback) {
throw new Error("No callback function supplied");
}
Deno.realPath(path)
.then((path) => callback!(null, path))
.catch((err) => callback!(err));
}
export function realpathSync(path: string): string {
return Deno.realPathSync(path);
}
|