diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-05-31 18:48:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 13:48:32 -0400 |
commit | 10573183af14b4f303909ee9394e0e72cf10b45d (patch) | |
tree | 45a2136c24d8cbb7d36218f9d1c10432bef301f8 /std/path/_util.ts | |
parent | 464f5bf769f23b85ecc2c99b54b639c5a71d700f (diff) |
fix(std/path): Support browsers (#6003)
Diffstat (limited to 'std/path/_util.ts')
-rw-r--r-- | std/path/_util.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/path/_util.ts b/std/path/_util.ts index 2776303cb..8ae40373b 100644 --- a/std/path/_util.ts +++ b/std/path/_util.ts @@ -1,7 +1,8 @@ // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ +/** This module is browser compatible. */ -import { FormatInputPathObject } from "./interface.ts"; +import { FormatInputPathObject } from "./_interface.ts"; import { CHAR_UPPERCASE_A, CHAR_LOWERCASE_A, |