diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 18:49:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-23 18:49:46 -0500 |
| commit | 7143f7d86043c05f0b4a303a41c29ea90b87dc63 (patch) | |
| tree | 01641b145ee36d161e81e68466843f4f3e2c9985 /path/index.ts | |
| parent | 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (diff) | |
Make compatible with latest deno (denoland/deno_std#41)
Original: https://github.com/denoland/deno_std/commit/0772030f5d08c97744dc0d3d102dec437464bc28
Diffstat (limited to 'path/index.ts')
| -rw-r--r-- | path/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/path/index.ts b/path/index.ts index 3b59bffa7..7b62b0b00 100644 --- a/path/index.ts +++ b/path/index.ts @@ -11,9 +11,9 @@ import { CHAR_BACKWARD_SLASH, CHAR_COLON, CHAR_QUESTION_MARK -} from "./constants"; +} from "./constants.ts"; import { cwd, env, platform } from "deno"; -import { FormatInputPathObject, ParsedPath } from "./interface"; +import { FormatInputPathObject, ParsedPath } from "./interface.ts"; function assertPath(path: string) { if (typeof path !== "string") { |
