mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-28 01:10:52 +01:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
|
import path from "path";
|
||
|
|
||
|
export default function decodePath(filePath: string): string {
|
||
|
return path.normalize(decodeURIComponent(filePath));
|
||
|
}
|