function formatDate(date, format) { let formatArr = []; format.replace(/\w+|:|\s|-|星期/g, function (text) { text && formatArr.push(text) }) const weekday = ['日', '一', '二', '三', '四', '五', '六']; const map = { 'yyyy': date.getFullYear(), 'yy': date.getFullYear() % 100, 'MM': da...