Is there a built in filter in angular to convert my unix timestamp to a human readable date format?
I have tried the following:
{{ ::time | date:"medium" }}
But it gives wrong results:
1232346882 gives Jan 15, 1970 7:19:06 AM
How can I fix that?