mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-19 18:25:51 +10:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
module.exports = function sort (arr) {
|
|
return arr.sort((a, b) => {
|
|
if (a < b) return -1
|
|
if (a > b) return 1
|
|
return 0
|
|
})
|
|
}
|