first
This commit is contained in:
21
node_modules/@vue/babel-helper-vue-transform-on/LICENSE
generated
vendored
Normal file
21
node_modules/@vue/babel-helper-vue-transform-on/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020-present vuejs
|
||||
|
||||
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.
|
5
node_modules/@vue/babel-helper-vue-transform-on/README.md
generated
vendored
Normal file
5
node_modules/@vue/babel-helper-vue-transform-on/README.md
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
# @vue/babel-helper-vue-transform-on
|
||||
|
||||
A package used internally by vue jsx transformer to transform events.
|
||||
|
||||
on: { click: xx } --> onClick: xx
|
4
node_modules/@vue/babel-helper-vue-transform-on/index.d.ts
generated
vendored
Normal file
4
node_modules/@vue/babel-helper-vue-transform-on/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
declare function transformOn(
|
||||
obj: Record<string, any>
|
||||
): Record<`on${string}`, any>;
|
||||
export default transformOn;
|
9
node_modules/@vue/babel-helper-vue-transform-on/index.js
generated
vendored
Normal file
9
node_modules/@vue/babel-helper-vue-transform-on/index.js
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
const transformOn = (obj) => {
|
||||
const result = {};
|
||||
Object.keys(obj).forEach((evt) => {
|
||||
result[`on${evt[0].toUpperCase()}${evt.slice(1)}`] = obj[evt];
|
||||
});
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = transformOn;
|
46
node_modules/@vue/babel-helper-vue-transform-on/package.json
generated
vendored
Normal file
46
node_modules/@vue/babel-helper-vue-transform-on/package.json
generated
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
"_from": "@vue/babel-helper-vue-transform-on@^1.1.5",
|
||||
"_id": "@vue/babel-helper-vue-transform-on@1.1.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==",
|
||||
"_location": "/@vue/babel-helper-vue-transform-on",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "@vue/babel-helper-vue-transform-on@^1.1.5",
|
||||
"name": "@vue/babel-helper-vue-transform-on",
|
||||
"escapedName": "@vue%2fbabel-helper-vue-transform-on",
|
||||
"scope": "@vue",
|
||||
"rawSpec": "^1.1.5",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.1.5"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@vue/babel-plugin-jsx"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz",
|
||||
"_shasum": "a976486b21e108e545524fe41ffe3fc9bbc28c7f",
|
||||
"_spec": "@vue/babel-helper-vue-transform-on@^1.1.5",
|
||||
"_where": "C:\\Users\\zhouxueli\\Desktop\\scheduling-app\\node_modules\\@vue\\babel-plugin-jsx",
|
||||
"author": {
|
||||
"name": "Amour1688",
|
||||
"email": "lcz_1996@foxmail.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vuejs/babel-plugin-jsx/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "to help transform on",
|
||||
"homepage": "https://github.com/vuejs/babel-plugin-jsx#readme",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"name": "@vue/babel-helper-vue-transform-on",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vuejs/babel-plugin-jsx.git"
|
||||
},
|
||||
"types": "index.d.ts",
|
||||
"version": "1.1.5"
|
||||
}
|
Reference in New Issue
Block a user