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-03-09 12:30:38 -05:00
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
export function readLinkSync(path: string): string {
|
2020-03-06 11:29:23 -05:00
|
|
|
return sendSync("op_read_link", { path });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
export function readLink(path: string): Promise<string> {
|
2020-03-16 05:22:16 -04:00
|
|
|
return sendAsync("op_read_link", { path });
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|