From e4fe5ee72ace30ccd1b7b6b15717164cf79f49c4 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Tue, 29 Nov 2022 14:13:14 +0900 Subject: fix(ext/node): allow absolute path in createRequire (#16853) Co-authored-by: David Sherret --- ext/node/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ext/node/lib.rs') diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 0e84cea7b..c365d5d7b 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -245,7 +245,10 @@ where fn op_require_proxy_path(filename: String) -> String { // Allow a directory to be passed as the filename let trailing_slash = if cfg!(windows) { - filename.ends_with('\\') + // Node also counts a trailing forward slash as a + // directory for node on Windows, but not backslashes + // on non-Windows platforms + filename.ends_with('\\') || filename.ends_with('/') } else { filename.ends_with('/') }; -- cgit v1.2.3