Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sort.js « functions « semver « node_modules « npm-pick-manifest « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d10917aba8e5a6cb01284b6987642b50f655eef (plain)
1
2
3
const compareBuild = require('./compare-build')
const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose))
module.exports = sort