mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-14 18:57:41 +01:00
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
/**
|
|
* Returns the filename without the extension.
|
|
* @param filename The filename to remove the extension from.
|
|
* @returns The filename without the extension.
|
|
*/
|
|
export default function removeFileExtension(filename: string): string {
|
|
return filename.replace(/\.[^/.]+$/, "");
|
|
}
|