aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@npmcli/fs/lib/common/node.js
blob: 4d13bc037359d7d2b7cf26f62dd4231232721370 (plain) (blame)
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,
}