added code for bot

This commit is contained in:
Laurens van der Drift
2024-05-27 21:46:01 +02:00
parent 15f2ac44a3
commit 79335ea096
3073 changed files with 342012 additions and 0 deletions

17
Bot/node_modules/lodash/_cloneRegExp.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
/** Used to match `RegExp` flags from their coerced string values. */
var reFlags = /\w*$/;
/**
* Creates a clone of `regexp`.
*
* @private
* @param {Object} regexp The regexp to clone.
* @returns {Object} Returns the cloned regexp.
*/
function cloneRegExp(regexp) {
var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));
result.lastIndex = regexp.lastIndex;
return result;
}
module.exports = cloneRegExp;