🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@vue/runtime-dom

Package Overview
Dependencies
Maintainers
1
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/runtime-dom - npm Package Compare versions

Comparing version
3.5.38
to
3.5.39
+8
-9
dist/runtime-dom.cjs.js
/**
* @vue/runtime-dom v3.5.38
* @vue/runtime-dom v3.5.39
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -656,12 +656,11 @@ * @license MIT

}
const optionsModifierRE = /(?:Once|Passive|Capture)$/;
const optionsModifierRE = /(Once|Passive|Capture)$/;
const optionsModifierEventRE = /^on:?(?:Once|Passive|Capture)$/;
function parseName(name) {
let options;
if (optionsModifierRE.test(name)) {
options = {};
let m;
while (m = name.match(optionsModifierRE)) {
name = name.slice(0, name.length - m[0].length);
options[m[0].toLowerCase()] = true;
}
let m;
while ((m = name.match(optionsModifierRE)) && !optionsModifierEventRE.test(name)) {
if (!options) options = {};
name = name.slice(0, name.length - m[1].length);
options[m[1].toLowerCase()] = true;
}

@@ -668,0 +667,0 @@ const event = name[2] === ":" ? name.slice(3) : shared.hyphenate(name.slice(2));

/**
* @vue/runtime-dom v3.5.38
* @vue/runtime-dom v3.5.39
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -638,12 +638,11 @@ * @license MIT

}
const optionsModifierRE = /(?:Once|Passive|Capture)$/;
const optionsModifierRE = /(Once|Passive|Capture)$/;
const optionsModifierEventRE = /^on:?(?:Once|Passive|Capture)$/;
function parseName(name) {
let options;
if (optionsModifierRE.test(name)) {
options = {};
let m;
while (m = name.match(optionsModifierRE)) {
name = name.slice(0, name.length - m[0].length);
options[m[0].toLowerCase()] = true;
}
let m;
while ((m = name.match(optionsModifierRE)) && !optionsModifierEventRE.test(name)) {
if (!options) options = {};
name = name.slice(0, name.length - m[1].length);
options[m[1].toLowerCase()] = true;
}

@@ -650,0 +649,0 @@ const event = name[2] === ":" ? name.slice(3) : shared.hyphenate(name.slice(2));

/**
* @vue/runtime-dom v3.5.38
* @vue/runtime-dom v3.5.39
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -721,12 +721,11 @@ * @license MIT

}
const optionsModifierRE = /(?:Once|Passive|Capture)$/;
const optionsModifierRE = /(Once|Passive|Capture)$/;
const optionsModifierEventRE = /^on:?(?:Once|Passive|Capture)$/;
function parseName(name) {
let options;
if (optionsModifierRE.test(name)) {
options = {};
let m;
while (m = name.match(optionsModifierRE)) {
name = name.slice(0, name.length - m[0].length);
options[m[0].toLowerCase()] = true;
}
let m;
while ((m = name.match(optionsModifierRE)) && !optionsModifierEventRE.test(name)) {
if (!options) options = {};
name = name.slice(0, name.length - m[1].length);
options[m[1].toLowerCase()] = true;
}

@@ -733,0 +732,0 @@ const event = name[2] === ":" ? name.slice(3) : hyphenate(name.slice(2));

{
"name": "@vue/runtime-dom",
"version": "3.5.38",
"version": "3.5.39",
"description": "@vue/runtime-dom",

@@ -53,5 +53,5 @@ "main": "index.js",

"csstype": "^3.2.3",
"@vue/shared": "3.5.38",
"@vue/runtime-core": "3.5.38",
"@vue/reactivity": "3.5.38"
"@vue/shared": "3.5.39",
"@vue/reactivity": "3.5.39",
"@vue/runtime-core": "3.5.39"
},

@@ -58,0 +58,0 @@ "devDependencies": {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display