Using DatePipe in Angular 5.1, I need to format the period field type (AM/PM) in lowercase. According to the documentation,
Tuesday, December 19, 7:00 am
should be
date:'EEEE, MMMM d, h:mm a'
However, the period field type always displays in uppercase, so I see this:
Tuesday, December 19, 7:00 AM
Am I doing something wrong or is this a known defect wtih Angular's date formatting?