我该如何从moment.js“ Do”令牌中提取月份的缩写?
I check that moment.js doesn't provide that functionality
我需要以“ 19”比“ th”大3倍的方式设置“ 19th”的样式。
我该如何实现?
我的想法是添加数字剥离功能,但这是一种非常讨厌的方式:/
const today = moment()
{today.format('D')}
{today.format('Do').replace(/[0-9]/g, '')}
{today.format(' [of] MMMM')}