I'm currently formatting a date in my component using the date pipe:
this.datePipe.transform(myDate, 'M/d/yy H:mm z');
The resulting output looks like this: 2/6/20 11:59 GMT-5
Is there a way to format the date like this: 2/6/20 11:59 GMT without resorting to string manipulation or a library?
The Angular date pipe uses the timezone from the client machine, and I would like to retain that functionality.