feat: locales #27

Merged
Anri merged 26 commits from lang into main 2022-07-22 11:46:48 +02:00
Showing only changes of commit f446913cd5 - Show all commits

View file

@ -18,3 +18,15 @@ export const getFilename = (path: string) => {
return path_list[path_list.length - 1].split('.')[0];
};
/**
* Remove extension from a filename
* @param filename string of the filename with an extension
* @returns string of the filename without an extension
*/
export const removeExtension = (filename: string) => {
const array = filename.split('.');
array.pop();
return array.join('.');
};