Skip to content

Commit a94a40e

Browse files
authored
[NODERAWFS] Revert #22372 (#22414)
This reverts commit 51f0346.
1 parent c4885de commit a94a40e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/library_nodepath.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
addToLibrary({
1515
$PATH: {
1616
isAbs: (path) => nodePath['isAbsolute'](path),
17-
normalize: (path) => nodePath['posix']['normalize'](path),
17+
normalize: (path) => nodePath['normalize'](path),
1818
dirname: (path) => nodePath['dirname'](path),
1919
basename: (path) => nodePath['basename'](path),
20-
join: (...args) => nodePath['posix']['join'](...args),
21-
join2: (l, r) => nodePath['posix']['join'](l, r),
20+
join: (...args) => nodePath['join'](...args),
21+
join2: (l, r) => nodePath['join'](l, r),
2222
},
2323
// The FS-using parts are split out into a separate object, so simple path
2424
// usage does not require the FS.

0 commit comments

Comments
 (0)