blob: 14b6240ed21d4620c2bc6e6bbb48a25376673e01 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync } from "../dispatch_json.ts";
export function cwd(): string {
return sendSync("op_cwd");
}
export function chdir(directory: string): void {
sendSync("op_chdir", { directory });
}
|