@@ -0,0 +1,4 @@
export function extensionFromFilename(fullFileName: string): string {
const re = /(?:\.([^.]+))?$/;
return re.exec(fullFileName)?.[1] || '';
}
The note is not visible to the blocked user.