leapfrogtechnology / nepali-date-picker

Nepali Date Picker jQuery Plugin 🇳🇵
http://leapfrogtechnology.github.io/nepali-date-picker/demo/
ISC License
87 stars 71 forks source link

Leading zeros added on month and date, full weekdays format added, and locale option added for nepali and english output. #48

Closed aj3sh closed 1 year ago

aj3sh commented 2 years ago

Added option locale (default: ne)

$('#from-picker').nepaliDatePicker({
  dateFormat: '%y-%m-%d',
  locale: 'en'
});

// Output => "2079-3-22"

Added non zero formatting and full weekday names (on both locale)

$('#from-picker').nepaliDatePicker({
  dateFormat: '%y-%0m-%0d',
  locale: 'en'
});

// Output => "2079-03-22"

Added formats