Galerie und tage

This commit is contained in:
2021-11-23 17:56:26 +01:00
parent ff35366279
commit 5f873bee89
4693 changed files with 149659 additions and 301447 deletions

19
node_modules/find-versions/index.js generated vendored
View File

@@ -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');
}));
};