mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
11 lines
343 B
TypeScript
11 lines
343 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
|
|
|
export function readLinkSync(path: string): string {
|
|
return sendSync("op_read_link", { path });
|
|
}
|
|
|
|
export function readLink(path: string): Promise<string> {
|
|
return sendAsync("op_read_link", { path });
|
|
}
|