UNPKG

hexo-seo-autopush

Version:

Daily automatic submission of urls to baidu and Google bing

13 lines (10 loc) 282 B
//日期排序 module.exports = { sortDownDate, sortUpDate } // 降序 function sortUpDate(arr) { return arr.sort((a, b) => Date.parse(a) - Date.parse(b)) } // 升序 function sortDownDate(arr, value) { return arr.sort((a, b) => Date.parse(b[value]) - Date.parse(a[value])) }