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-04-08 09:11:32 -04:00
|
|
|
|
2020-03-20 09:46:26 -04:00
|
|
|
export function linkSync(oldpath: string, newpath: string): void {
|
|
|
|
sendSync("op_link", { oldpath, newpath });
|
2019-04-08 09:11:32 -04:00
|
|
|
}
|
|
|
|
|
2020-03-20 09:46:26 -04:00
|
|
|
export async function link(oldpath: string, newpath: string): Promise<void> {
|
|
|
|
await sendAsync("op_link", { oldpath, newpath });
|
2019-04-08 09:11:32 -04:00
|
|
|
}
|