mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
|
"use strict";
|
||
|
|
||
|
const { version } = require( "process" );
|
||
|
const nodeV16OrNewer = !/^v1[0-5]\./.test( version );
|
||
|
|
||
|
module.exports = function verifyNodeVersion() {
|
||
|
if ( !nodeV16OrNewer ) {
|
||
|
console.log( "Old Node.js detected, task skipped..." );
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
};
|