In the diagram below, points $A,$ $E,$ and $F$ lie on the same line. If $ABCDE$ is a regular pentagon, and $\angle EFD=90^\circ$, then how many degrees are in the measure of $\angle FDE$?
[asy]
size(5.5cm);
pair cis(real magni, real argu) { return (magni*cos(argu*pi/180),magni*sin(argu*pi/180)); }
pair a=cis(1,144); pair b=cis(1,72); pair c=cis(1,0); pair d=cis(1,288); pair e=cis(1,216);
pair f=e-(0,2*sin(pi/5)*sin(pi/10));
dot(a); dot(b); dot(c); dot(d); dot(e); dot(f);
label("$A$",a,WNW);
label("$B$",b,ENE);
label("$C$",c,E);
label("$D$",d,ESE);
label("$E$",e,W);
label("$F$",f,WSW);
draw(d--f--a--b--c--d--e);
draw(f+(0,0.1)--f+(0.1,0.1)--f+(0.1,0));
[/asy]