Galerie und tage
This commit is contained in:
19
node_modules/find-versions/index.js
generated
vendored
19
node_modules/find-versions/index.js
generated
vendored
@@ -1,13 +1,18 @@
|
||||
'use strict';
|
||||
const semverRegex = require('semver-regex');
|
||||
var semverRegex = require('semver-regex');
|
||||
var arrayUniq = require('array-uniq');
|
||||
|
||||
module.exports = (stringWithVersions, options = {}) => {
|
||||
if (typeof stringWithVersions !== 'string') {
|
||||
throw new TypeError(`Expected a string, got ${typeof stringWithVersions}`);
|
||||
module.exports = function (str, opts) {
|
||||
if (typeof str !== 'string') {
|
||||
throw new TypeError('Expected a string');
|
||||
}
|
||||
|
||||
const reLoose = new RegExp(`(?:${semverRegex().source})|(?:v?(?:\\d+\\.\\d+)(?:\\.\\d+)?)`, 'g');
|
||||
const matches = stringWithVersions.match(options.loose === true ? reLoose : semverRegex()) || [];
|
||||
opts = opts || {};
|
||||
|
||||
return [...new Set(matches.map(match => match.trim().replace(/^v/, '').replace(/^\d+\.\d+$/, '$&.0')))];
|
||||
var reLoose = new RegExp('(?:' + semverRegex().source + ')|(?:v?(?:\\d+\\.\\d+)(?:\\.\\d+)?)', 'g');
|
||||
var matches = str.match(opts.loose === true ? reLoose : semverRegex()) || [];
|
||||
|
||||
return arrayUniq(matches.map(function (el) {
|
||||
return el.trim().replace(/^v/, '').replace(/^\d+\.\d+$/, '$&.0');
|
||||
}));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user