In my project, I have this in moment for time, this one,
moment().format('LLL') // June 9 2014 9:32 PM
moment().format('D MMM YYYY[,] HH[:]mm z')
but if I use this in luxon how can i make this format in luxon, for example, given below,
luxon.DateTime.utc().toFormat('')
luxon.DateTime.now().toFormat('d MMM yyyy[,] HH[:]mm z')
Here if i use this, in luxon LLL it represents month as an abbreviated localized string and it might only show me the month only.