dayjs
                                
                                 dayjs copied to clipboard
                                
                                    dayjs copied to clipboard
                            
                            
                            
                        dayjs('03-11-2023', { format: 'DD-MM-YYYY' }).format('DD-MM-YYYY') the result should be '03-11-2023'
Describe the bug
const date = dayjs('03-11-2023', { format: 'DD-MM-YYYY' }).format('DD-MM-YYYY')
Expected behavior
the result should be the same as input 03-11-2023
Information [email protected]
when using different formats you should add the plugin
import customParseFormat from 'dayjs/plugin/customParseFormat';
dayjs.extend(customParseFormat)
hope to be helpful