���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/home/real/node-v13.0.1/tools/doc/ |
'use strict'; let _versions; const getUrl = (url) => { return new Promise((resolve, reject) => { const https = require('https'); const request = https.get(url, (response) => { if (response.statusCode !== 200) { reject(new Error( `Failed to get ${url}, status code ${response.statusCode}`)); } response.setEncoding('utf8'); let body = ''; response.on('data', (data) => body += data); response.on('end', () => resolve(body)); }); request.on('error', (err) => reject(err)); }); }; module.exports = { async versions() { if (_versions) { return _versions; } // The CHANGELOG.md on release branches may not reference newer semver // majors of Node.js so fetch and parse the version from the master branch. const githubContentUrl = 'https://raw.githubusercontent.com/nodejs/node/'; const changelog = await getUrl(`${githubContentUrl}/master/CHANGELOG.md`); const ltsRE = /Long Term Support/i; const versionRE = /\* \[Node\.js ([0-9.]+)\][^-—]+[-—]\s*(.*)\n/g; _versions = []; let match; while ((match = versionRE.exec(changelog)) != null) { const entry = { num: `${match[1]}.x` }; if (ltsRE.test(match[2])) { entry.lts = true; } _versions.push(entry); } return _versions; } };