Hi everybody. I have the below function and want to get inverse Fourier transform of it and plot it.
 
ft = Exp[1 - (1 + \[Omega]^4)^(a/4)]
when I use the below command, I get the same input as output.
 
ift[t_] = 
 InverseFourierTransform[ft, \[Omega], t, Assumptions -> 0 < a < 2]
Generally, I want to plot the inverse Fourier transform of this function to check its behavior. How Can I do it?
thanks for your help in advance.