source:
frontend/node_modules/at-least-node/index.js
| Last change on this file was 9af201e, checked in by , 11 days 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.
