big fixes
fixes feedback from thecodacus
This commit is contained in:
19
app/utils/path.ts
Normal file
19
app/utils/path.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// Browser-compatible path utilities
|
||||
import type { ParsedPath } from 'path';
|
||||
import pathBrowserify from 'path-browserify';
|
||||
|
||||
/**
|
||||
* A browser-compatible path utility that mimics Node's path module
|
||||
* Using path-browserify for consistent behavior in browser environments
|
||||
*/
|
||||
export const path = {
|
||||
join: (...paths: string[]): string => pathBrowserify.join(...paths),
|
||||
dirname: (path: string): string => pathBrowserify.dirname(path),
|
||||
basename: (path: string, ext?: string): string => pathBrowserify.basename(path, ext),
|
||||
extname: (path: string): string => pathBrowserify.extname(path),
|
||||
relative: (from: string, to: string): string => pathBrowserify.relative(from, to),
|
||||
isAbsolute: (path: string): boolean => pathBrowserify.isAbsolute(path),
|
||||
normalize: (path: string): string => pathBrowserify.normalize(path),
|
||||
parse: (path: string): ParsedPath => pathBrowserify.parse(path),
|
||||
format: (pathObject: ParsedPath): string => pathBrowserify.format(pathObject),
|
||||
} as const;
|
||||
Reference in New Issue
Block a user