Skip to content

Commit cbe77b3

Browse files
anonrigaduh95
authored andcommitted
lib: move ToNamespacedPath call to c++
PR-URL: #53654 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
1 parent 5aa2163 commit cbe77b3

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

lib/internal/modules/esm/formats.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const {
66

77
const { getOptionValue } = require('internal/options');
88
const { getValidatedPath } = require('internal/fs/utils');
9-
const pathModule = require('path');
109
const fsBindings = internalBinding('fs');
1110
const { fs: fsConstants } = internalBinding('constants');
1211

@@ -48,9 +47,7 @@ function mimeToFormat(mime) {
4847
*/
4948
function getFormatOfExtensionlessFile(url) {
5049
if (!experimentalWasmModules) { return 'module'; }
51-
52-
const path = pathModule.toNamespacedPath(getValidatedPath(url));
53-
50+
const path = getValidatedPath(url);
5451
switch (fsBindings.getFormatOfExtensionlessFile(path)) {
5552
case fsConstants.EXTENSIONLESS_FORMAT_WASM:
5653
return 'wasm';

src/node_file.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -2966,8 +2966,8 @@ static void GetFormatOfExtensionlessFile(
29662966
CHECK(args[0]->IsString());
29672967

29682968
Environment* env = Environment::GetCurrent(args);
2969-
node::Utf8Value input(args.GetIsolate(), args[0]);
2970-
2969+
BufferValue input(args.GetIsolate(), args[0]);
2970+
ToNamespacedPath(env, &input);
29712971
THROW_IF_INSUFFICIENT_PERMISSIONS(
29722972
env, permission::PermissionScope::kFileSystemRead, input.ToStringView());
29732973

0 commit comments

Comments
 (0)