globalizejs / globalize

A JavaScript library for internationalization and localization that leverages the official Unicode CLDR JSON data
https://globalizejs.com
MIT License
4.8k stars 605 forks source link

how to add new formats for date? #883

Open ihari07 opened 4 years ago

ihari07 commented 4 years ago

Hi,

I have tried to add one new format to calendar by code below.

enGregorian.main[culture].dates.calendars.gregorian.dateFormats.shortdate = 'yMd';

shortdateformatter = Globalize.dateFormatter( { date: 'shortdate'});

I am getting this error.

Uncaught Error: E_INVALID_OPTIONS: Invalid {date: "shortdate"}

Can you please help me?