Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
34
my-app/node_modules/regex-parser/lib/index.js
generated
vendored
Executable file
34
my-app/node_modules/regex-parser/lib/index.js
generated
vendored
Executable file
|
@ -0,0 +1,34 @@
|
|||
"use strict";
|
||||
|
||||
/**
|
||||
* RegexParser
|
||||
* Parses a string input.
|
||||
*
|
||||
* @name RegexParser
|
||||
* @function
|
||||
* @param {String} input The string input that should be parsed as regular
|
||||
* expression.
|
||||
* @return {RegExp} The parsed regular expression.
|
||||
*/
|
||||
var RegexParser = module.exports = function (input) {
|
||||
// Validate input
|
||||
if (typeof input !== "string") {
|
||||
throw new Error("Invalid input. Input must be a string");
|
||||
}
|
||||
|
||||
// Parse input
|
||||
var m = input.match(/(\/?)(.+)\1([a-z]*)/i);
|
||||
|
||||
// If there's no match, throw an error
|
||||
if (!m) {
|
||||
throw new Error("Invalid regular expression format.");
|
||||
}
|
||||
|
||||
// Filter valid flags: 'g', 'i', 'm', 's', 'u', and 'y'
|
||||
var validFlags = Array.from(new Set(m[3])).filter(function (flag) {
|
||||
return "gimsuy".includes(flag);
|
||||
}).join("");
|
||||
|
||||
// Create the regular expression
|
||||
return new RegExp(m[2], validFlags);
|
||||
};
|
5
my-app/node_modules/regex-parser/lib/typings/regex-parser.d.ts
generated
vendored
Executable file
5
my-app/node_modules/regex-parser/lib/typings/regex-parser.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,5 @@
|
|||
declare module 'regex-parser' {
|
||||
function Parse(regexString: string): RegExp;
|
||||
|
||||
export = Parse;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue