The separator between month and day is different for different locale, how can I get it?
I want to display:
"MM/DD HH:mm" for English,
"MM-DD HH:mm" for Chinese,
"MM.DD HH:mm" for German.
How can I handle it with moment.js ?
Note: I could have lots of languages, I don't want to use if the check which language is currently used, and the format must be like what I have listed above.