blob: d5af82f9b9c9cc830103f98bc4d5bbd37e4d76b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync, sendAsync } from "../dispatch_json.ts";
export interface RemoveOptions {
recursive?: boolean;
}
export function removeSync(path: string, options: RemoveOptions = {}): void {
sendSync("op_remove", { path, recursive: !!options.recursive });
}
export async function remove(
path: string,
options: RemoveOptions = {}
): Promise<void> {
await sendAsync("op_remove", { path, recursive: !!options.recursive });
}
|