Projekt

Obecné

Profil

Stáhnout (143 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 f892db55 Ondřej Váně
export default class Utils {
2
3
  static removeFileSuffix(file: File): string {
4
    return file.name.substring(0, file.name.indexOf('.'));
5
  }
6
}