Skip to content

Commit

Permalink
[NODERAWFS] Revert #22372 (#22414)
Browse files Browse the repository at this point in the history
This reverts commit 51f0346.
  • Loading branch information
kleisauke authored Aug 21, 2024
1 parent c4885de commit a94a40e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/library_nodepath.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
addToLibrary({
$PATH: {
isAbs: (path) => nodePath['isAbsolute'](path),
normalize: (path) => nodePath['posix']['normalize'](path),
normalize: (path) => nodePath['normalize'](path),
dirname: (path) => nodePath['dirname'](path),
basename: (path) => nodePath['basename'](path),
join: (...args) => nodePath['posix']['join'](...args),
join2: (l, r) => nodePath['posix']['join'](l, r),
join: (...args) => nodePath['join'](...args),
join2: (l, r) => nodePath['join'](l, r),
},
// The FS-using parts are split out into a separate object, so simple path
// usage does not require the FS.
Expand Down

0 comments on commit a94a40e

Please sign in to comment.