I'm running into a small formatting issue with moment's a
input.
a/A will return AM/am PM/pm but is there a way to format this to include periods?
I.E. a.m. p.m. it's a format change that is important to the client and I haven't been able to find the fix with moment's documentation
I've tried
moment.updateLocale('en', {
meridiem : {
am : 'a.m.',
AM : 'A.M.',
pm : 'p.m.',
PM : 'P.M.'
}
});
With no success
Is it possible?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…