I use this Library for my jalali datePicker form field but when i update this library from v3.3.3 to v3.3.8 i can't show the Month Name in persian but in the older version we can, what should i do ?
export class TimePipe implements PipeTransform {
/**
* Convert Date to Developer Date Format
* @param value : get timestamp format
* @param args : get locale and format
*/
transform(value: any, args?: DatePipeArgs): any {
if ( !value ) {
return '';
} else {
const MomentDate = jMoment.from(value, 'fa');
return MomentDate.format('jYYYY/jMMM/jDD');
}
}
}
I use this Library for my jalali datePicker form field but when i update this library from v3.3.3 to v3.3.8 i can't show the Month Name in persian but in the older version we can, what should i do ?
this Angular9.x Pipe will return this :