mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 01:19:30 +08:00
5 lines
234 B
Text
5 lines
234 B
Text
module.exports = r => {
|
|
const n = process.versions.node.split('.').map(x => parseInt(x, 10))
|
|
r = r.split('.').map(x => parseInt(x, 10))
|
|
return n[0] > r[0] || (n[0] === r[0] && (n[1] > r[1] || (n[1] === r[1] && n[2] >= r[2])))
|
|
}
|