4
Size: a a a
4
j
dayjs('04-01-2021', 'DD-MM-YYYY', true).format('DD/MMMM/YYYY');
j
j
j
NN
NN
j
j
j
NN
NN
j
NH
const escapeMap = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": '''
};
const safeTags = [
'b',
'strong',
'i',
'em',
'mark',
'small',
'del',
'ins',
'sub',
'sup'
];
j
const dayjs = require('dayjs')
const customParseFormat = require('dayjs/plugin/customParseFormat')
dayjs.extend(customParseFormat)
console.log(dayjs('04-01-2021', 'DD-MM-YYYY', true).format('DD/MMMM/YYYY'))
j
j
j
NN