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

node.js « common « lib « fs « @npmcli « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d13bc037359d7d2b7cf26f62dd4231232721370 (plain)
1
2
3
4
5
6
7
8
9
const semver = require('semver')

const satisfies = (range) => {
  return semver.satisfies(process.version, range, { includePrerelease: true })
}

module.exports = {
  satisfies,
}