source:
node_modules/at-least-node/index.js@
65b6638
Last change on this file since 65b6638 was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 234 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 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.