We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f7aed8 commit ad3d857Copy full SHA for ad3d857
src/permission/fs_permission.cc
@@ -58,16 +58,16 @@ bool is_tree_granted(
58
std::string resolved_param = node::PathResolve(env, {param});
59
#ifdef _WIN32
60
// Remove leading "\\?\" from UNC path
61
- if (resolved_param.substr(0, 4) == "\\\\?\\") {
+ if (resolved_param.starts_with("\\\\?\\")) {
62
resolved_param.erase(0, 4);
63
}
64
65
// Remove leading "UNC\" from UNC path
66
- if (resolved_param.substr(0, 4) == "UNC\\") {
+ if (resolved_param.starts_with("UNC\\")) {
67
68
69
// Remove leading "//" from UNC path
70
- if (resolved_param.substr(0, 2) == "//") {
+ if (resolved_param.starts_with("//")) {
71
resolved_param.erase(0, 2);
72
73
#endif
0 commit comments