2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-07-06 21:45:39 -04:00
|
|
|
|
2020-03-09 19:22:15 -04:00
|
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
export function realPathSync(path: string): string {
|
2020-02-25 09:14:27 -05:00
|
|
|
return sendSync("op_realpath", { path });
|
2019-11-26 03:40:57 -05:00
|
|
|
}
|
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
export function realPath(path: string): Promise<string> {
|
2020-03-16 05:22:16 -04:00
|
|
|
return sendAsync("op_realpath", { path });
|
2019-11-26 03:40:57 -05:00
|
|
|
}
|