first commit
This commit is contained in:
22
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/LICENSE
generated
vendored
Normal file
22
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/LICENSE
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
19
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/README.md
generated
vendored
Normal file
19
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/README.md
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
# @babel/plugin-syntax-unicode-sets-regex
|
||||
|
||||
> Parse regular expressions' unicodeSets (v) flag.
|
||||
|
||||
See our website [@babel/plugin-syntax-unicode-sets-regex](https://babeljs.io/docs/en/babel-plugin-syntax-unicode-sets-regex) for more information.
|
||||
|
||||
## Install
|
||||
|
||||
Using npm:
|
||||
|
||||
```sh
|
||||
npm install --save-dev @babel/plugin-syntax-unicode-sets-regex
|
||||
```
|
||||
|
||||
or using yarn:
|
||||
|
||||
```sh
|
||||
yarn add @babel/plugin-syntax-unicode-sets-regex --dev
|
||||
```
|
25
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/lib/index.js
generated
vendored
Normal file
25
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _helperCreateRegexpFeaturesPlugin = require("@babel/helper-create-regexp-features-plugin");
|
||||
|
||||
var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
||||
|
||||
var _default = (0, _helperPluginUtils.declare)(api => {
|
||||
api.assertVersion(7);
|
||||
return (0, _helperCreateRegexpFeaturesPlugin.createRegExpFeaturePlugin)({
|
||||
name: "syntax-unicode-sets-regex",
|
||||
feature: "unicodeSetsFlag_syntax",
|
||||
|
||||
manipulateOptions(opts, parserOpts) {
|
||||
parserOpts.plugins.push("regexpUnicodeSets");
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
exports.default = _default;
|
49
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/package.json
generated
vendored
Normal file
49
app_vue/node_modules/@babel/plugin-syntax-unicode-sets-regex/package.json
generated
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "@babel/plugin-syntax-unicode-sets-regex",
|
||||
"version": "7.18.6",
|
||||
"description": "Parse regular expressions' unicodeSets (v) flag.",
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-unicode-sets-regex",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"keywords": [
|
||||
"babel-plugin",
|
||||
"regex",
|
||||
"regexp",
|
||||
"unicode",
|
||||
"sets",
|
||||
"properties",
|
||||
"property",
|
||||
"string",
|
||||
"strings",
|
||||
"regular expressions"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/babel/babel.git",
|
||||
"directory": "packages/babel-plugin-syntax-unicode-sets-regex"
|
||||
},
|
||||
"bugs": "https://github.com/babel/babel/issues",
|
||||
"dependencies": {
|
||||
"@babel/helper-create-regexp-features-plugin": "^7.18.6",
|
||||
"@babel/helper-plugin-utils": "^7.18.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.18.6",
|
||||
"@babel/helper-plugin-test-runner": "^7.18.6"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"exports": {
|
||||
".": "./lib/index.js",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"type": "commonjs"
|
||||
}
|
Reference in New Issue
Block a user