std: Move fs/path to the top-level (#3100)

This commit is contained in:
Nayeem Rahman 2019-10-16 19:39:33 +01:00 committed by Ryan Dahl
parent 99d8ac70db
commit f51dcc12d7
57 changed files with 323 additions and 305 deletions

View file

@ -1,8 +1,8 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertThrows, assertThrowsAsync } from "../testing/asserts.ts";
import * as path from "../path/mod.ts";
import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
import * as path from "./path/mod.ts";
import { ensureFile, ensureFileSync } from "./ensure_file.ts";
const testdataDir = path.resolve("fs", "testdata");