Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vue/shared

Package Overview
Dependencies
Maintainers
1
Versions
230
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.5 to 3.0.6

LICENSE

11

dist/shared.cjs.js

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

'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl';
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt';
const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED);

@@ -215,3 +215,6 @@

for (let i = 0; i < value.length; i++) {
res += normalizeClass(value[i]) + ' ';
const normalized = normalizeClass(value[i]);
if (normalized) {
res += normalized + ' ';
}
}

@@ -393,5 +396,5 @@ }

];
const EMPTY_OBJ = Object.freeze({})
const EMPTY_OBJ = Object.freeze({})
;
const EMPTY_ARR = Object.freeze([]) ;
const EMPTY_ARR = Object.freeze([]) ;
const NOOP = () => { };

@@ -398,0 +401,0 @@ /**

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

'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl';
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt';
const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED);

@@ -215,3 +215,6 @@

for (let i = 0; i < value.length; i++) {
res += normalizeClass(value[i]) + ' ';
const normalized = normalizeClass(value[i]);
if (normalized) {
res += normalized + ' ';
}
}

@@ -393,4 +396,4 @@ }

];
const EMPTY_OBJ = {};
const EMPTY_ARR = [];
const EMPTY_OBJ = {};
const EMPTY_ARR = [];
const NOOP = () => { };

@@ -397,0 +400,0 @@ /**

@@ -48,3 +48,3 @@ /**

'decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,' +
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl';
'Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt';
const isGloballyWhitelisted = /*#__PURE__*/ makeMap(GLOBALS_WHITE_LISTED);

@@ -211,3 +211,6 @@

for (let i = 0; i < value.length; i++) {
res += normalizeClass(value[i]) + ' ';
const normalized = normalizeClass(value[i]);
if (normalized) {
res += normalized + ' ';
}
}

@@ -214,0 +217,0 @@ }

{
"name": "@vue/shared",
"version": "3.0.5",
"version": "3.0.6",
"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