Hi!
Im using pipe to format a date object.
let dates = {date: new Date("2017-10-22")};
In html:
<strong>{{item.date | date:'dd/MMM'}}</strong>
Im expecting a result as: 22/Oct.
It works well in Android, but in iOS I have the output as 21/Oct.
Thanks!