Socket
Socket
Sign inDemoInstall

@vue/shared

Package Overview
Dependencies
Maintainers
14
Versions
223
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/shared - npm Package Compare versions

Comparing version 3.0.0-beta.2 to 3.0.0-beta.3

2

dist/shared.cjs.js

@@ -234,3 +234,3 @@ 'use strict';

const value = styles[key];
const normalizedKey = key.indexOf(`--`) === 0 ? key : hyphenate(key);
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
if (isString(value) ||

@@ -237,0 +237,0 @@ (typeof value === 'number' && isNoUnitNumericStyleProp(normalizedKey))) {

@@ -234,3 +234,3 @@ 'use strict';

const value = styles[key];
const normalizedKey = key.indexOf(`--`) === 0 ? key : hyphenate(key);
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
if (isString(value) ||

@@ -237,0 +237,0 @@ (typeof value === 'number' && isNoUnitNumericStyleProp(normalizedKey))) {

@@ -230,3 +230,3 @@ // Make a map and return a function for checking if a key

const value = styles[key];
const normalizedKey = key.indexOf(`--`) === 0 ? key : hyphenate(key);
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
if (isString(value) ||

@@ -233,0 +233,0 @@ (typeof value === 'number' && isNoUnitNumericStyleProp(normalizedKey))) {

{
"name": "@vue/shared",
"version": "3.0.0-beta.2",
"version": "3.0.0-beta.3",
"description": "internal utils shared across @vue packages",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc