File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ const win32 = {
178
178
// Verify that a cwd was found and that it actually points
179
179
// to our drive. If not, default to the drive's root.
180
180
if ( path === undefined ||
181
- ( StringPrototypeSlice ( path , 0 , 2 ) . toLowerCase ( ) !==
181
+ ( StringPrototypeToLowerCase ( StringPrototypeSlice ( path , 0 , 2 ) ) !==
182
182
StringPrototypeToLowerCase ( resolvedDevice ) &&
183
183
StringPrototypeCharCodeAt ( path , 2 ) === CHAR_BACKWARD_SLASH ) ) {
184
184
path = `${ resolvedDevice } \\` ;
@@ -1410,7 +1410,7 @@ const posix = {
1410
1410
return StringPrototypeSlice ( path , startDot , end ) ;
1411
1411
} ,
1412
1412
1413
- format : _format . bind ( null , '/' ) ,
1413
+ format : FunctionPrototypeBind ( _format , null , '/' ) ,
1414
1414
1415
1415
/**
1416
1416
* @param {string } path
You can’t perform that action at this time.
0 commit comments