Returns the name of the file without the extension

import { getFilenameWithoutExtension } from 'filepond/utils';

const name = getExtensionFromFilename('Untitled.txt')
console.log(name);
// logs 'untitled'