feat: init
This commit is contained in:
28
node_modules/regexp-tree/dist/parser/index.js
generated
vendored
Normal file
28
node_modules/regexp-tree/dist/parser/index.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* The MIT License (MIT)
|
||||
* Copyright (c) 2017-present Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var regexpTreeParser = require('./generated/regexp-tree');
|
||||
|
||||
/**
|
||||
* Original parse function.
|
||||
*/
|
||||
var generatedParseFn = regexpTreeParser.parse.bind(regexpTreeParser);
|
||||
|
||||
/**
|
||||
* Parses a regular expression.
|
||||
*
|
||||
* Override original `regexpTreeParser.parse` to convert a value to a string,
|
||||
* since in regexp-tree we may pass strings, and RegExp instance.
|
||||
*/
|
||||
regexpTreeParser.parse = function (regexp, options) {
|
||||
return generatedParseFn('' + regexp, options);
|
||||
};
|
||||
|
||||
// By default do not capture locations; callers may override.
|
||||
regexpTreeParser.setOptions({ captureLocations: false });
|
||||
|
||||
module.exports = regexpTreeParser;
|
||||
Reference in New Issue
Block a user