I have an UTC date in milliseconds which I am passing to Angular's date filter for human formatting.
{{someDate | date:'d MMMM yyyy'}}
Awesome, except someDate is in UTC and the date filter considers it to be in local time.
How can I tell Angular that someDate is UTC?
Thank you.