source:
frontend/node_modules/at-least-node/index.js
| Last change on this file was 9af201e, checked in by , 13 days ago | |
|---|---|
|
|
| File size: 234 bytes | |
| Rev | Line | |
|---|---|---|
| [9af201e] | 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.
