diff options
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/path/interface.ts | 2 | ||||
| -rw-r--r-- | fs/path/mod.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/path/interface.ts b/fs/path/interface.ts index a140a4ca5..b31c89ea7 100644 --- a/fs/path/interface.ts +++ b/fs/path/interface.ts @@ -24,4 +24,4 @@ export interface ParsedPath { name: string; } -export type FormatInputPathObject = Partial<ParsedPath> +export type FormatInputPathObject = Partial<ParsedPath>; diff --git a/fs/path/mod.ts b/fs/path/mod.ts index 114c904a2..7adb230d2 100644 --- a/fs/path/mod.ts +++ b/fs/path/mod.ts @@ -980,7 +980,7 @@ export const win32 = { } else { ret.name = path.slice(startPart, startDot); ret.base = path.slice(startPart, end); - ret.ext = path.slice(startDot, end); + ret.ext = path.slice(startDot, end); } // If the directory is the root, use the entire root as the `dir` including |
