We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada4c7d commit e8fb291Copy full SHA for e8fb291
src/deno_ral/path.ts
@@ -5,6 +5,7 @@
5
*/
6
7
import * as path from "path";
8
+import { normalize as posixNormalize } from "path/posix";
9
10
export const SEP = path.SEPARATOR;
11
export const SEP_PATTERN = path.SEPARATOR_PATTERN;
@@ -21,4 +22,4 @@ export const normalize = path.normalize;
21
22
export const toFileUrl = path.toFileUrl;
23
export const isGlob = path.isGlob;
24
-export const posix = { normalize: path.posix.normalize };
25
+export const posix = { normalize: posixNormalize };
0 commit comments