summaryrefslogtreecommitdiff
path: root/cli/js/ops/fs/dir.ts
blob: dbf468c6218d7c935ba2d4772922037c95dea288 (plain)
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 });
}