You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rsort.js 149 B

10 months ago
123
  1. const compareBuild = require('./compare-build')
  2. const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose))
  3. module.exports = rsort