1 2 3 4 5 6 7 8 9 10 11
// 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 }); }