export default class Utils {
static removeFileSuffix(file: File): string {
return file.name.substring(0, file.name.indexOf('.'));
}