diff options
Diffstat (limited to 'fs/path/mod.ts')
-rw-r--r-- | fs/path/mod.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/path/mod.ts b/fs/path/mod.ts index 7adb230d2..4ca630ed6 100644 --- a/fs/path/mod.ts +++ b/fs/path/mod.ts @@ -1,7 +1,7 @@ // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ -import { cwd, env } from "deno"; +const { cwd, env } = Deno; import { FormatInputPathObject, ParsedPath } from "./interface.ts"; import { isWindows, |