@vue/shared
Advanced tools
Comparing version 3.0.5 to 3.0.6
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
72781
8
1845