File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1462,8 +1462,8 @@ const posix = {
14621462 // after any path separator we find
14631463 let preDotState = 0 ;
14641464 for ( let i = path . length - 1 ; i >= 0 ; -- i ) {
1465- const code = StringPrototypeCharCodeAt ( path , i ) ;
1466- if ( code === CHAR_FORWARD_SLASH ) {
1465+ const char = path [ i ] ;
1466+ if ( char === '/' ) {
14671467 // If we reached a path separator that was not part of a set of path
14681468 // separators at the end of the string, stop now
14691469 if ( ! matchedSlash ) {
@@ -1478,7 +1478,7 @@ const posix = {
14781478 matchedSlash = false ;
14791479 end = i + 1 ;
14801480 }
1481- if ( code === CHAR_DOT ) {
1481+ if ( char === '.' ) {
14821482 // If this is our first dot, mark it as the start of our extension
14831483 if ( startDot === - 1 )
14841484 startDot = i ;
You can’t perform that action at this time.
0 commit comments