HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/anvil.komma.pro/node_modules/find-versions/index.js
'use strict';
var semverRegex = require('semver-regex');
var arrayUniq = require('array-uniq');

module.exports = function (str, opts) {
	if (typeof str !== 'string') {
		throw new TypeError('Expected a string');
	}

	opts = opts || {};

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