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.2.0-beta.5 to 3.2.0-beta.6

6

dist/shared.cjs.js

@@ -391,3 +391,7 @@ 'use strict';

const replacer = (_key, val) => {
if (isMap(val)) {
// can't use isRef here since @vue/shared has no deps
if (val && val.__v_isRef) {
return replacer(_key, val.value);
}
else if (isMap(val)) {
return {

@@ -394,0 +398,0 @@ [`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val]) => {

@@ -391,3 +391,7 @@ 'use strict';

const replacer = (_key, val) => {
if (isMap(val)) {
// can't use isRef here since @vue/shared has no deps
if (val && val.__v_isRef) {
return replacer(_key, val.value);
}
else if (isMap(val)) {
return {

@@ -394,0 +398,0 @@ [`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val]) => {

@@ -387,3 +387,7 @@ /**

const replacer = (_key, val) => {
if (isMap(val)) {
// can't use isRef here since @vue/shared has no deps
if (val && val.__v_isRef) {
return replacer(_key, val.value);
}
else if (isMap(val)) {
return {

@@ -390,0 +394,0 @@ [`Map(${val.size})`]: [...val.entries()].reduce((entries, [key, val]) => {

2

package.json
{
"name": "@vue/shared",
"version": "3.2.0-beta.5",
"version": "3.2.0-beta.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