source: node_modules/at-least-node/index.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 234 bytes
Line 
1module.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.