source:
node_modules/at-least-node/index.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 234 bytes |
Line | |
---|---|
1 | module.exports = r => { |
2 | const n = process.versions.node.split('.').map(x => parseInt(x, 10)) |
3 | r = r.split('.').map(x => parseInt(x, 10)) |
4 | return n[0] > r[0] || (n[0] === r[0] && (n[1] > r[1] || (n[1] === r[1] && n[2] >= r[2]))) |
5 | } |
Note:
See TracBrowser
for help on using the repository browser.