Socket
Socket
Sign inDemoInstall

@vue/shared

Package Overview
Dependencies
Maintainers
2
Versions
225
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.4.25 to 3.4.26

5

dist/shared.cjs.js
/**
* @vue/shared v3.4.25
* @vue/shared v3.4.26
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -88,6 +88,7 @@ * @license MIT

};
const def = (obj, key, value) => {
const def = (obj, key, value, writable = false) => {
Object.defineProperty(obj, key, {
configurable: true,
enumerable: false,
writable,
value

@@ -94,0 +95,0 @@ });

/**
* @vue/shared v3.4.25
* @vue/shared v3.4.26
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -88,6 +88,7 @@ * @license MIT

};
const def = (obj, key, value) => {
const def = (obj, key, value, writable = false) => {
Object.defineProperty(obj, key, {
configurable: true,
enumerable: false,
writable,
value

@@ -94,0 +95,0 @@ });

2

dist/shared.d.ts

@@ -65,3 +65,3 @@ /**

export declare const invokeArrayFns: (fns: Function[], arg?: any) => void;
export declare const def: (obj: object, key: string | symbol, value: any) => void;
export declare const def: (obj: object, key: string | symbol, value: any, writable?: boolean) => void;
/**

@@ -68,0 +68,0 @@ * "123-foo" will be parsed to 123

/**
* @vue/shared v3.4.25
* @vue/shared v3.4.26
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -84,6 +84,7 @@ * @license MIT

};
const def = (obj, key, value) => {
const def = (obj, key, value, writable = false) => {
Object.defineProperty(obj, key, {
configurable: true,
enumerable: false,
writable,
value

@@ -90,0 +91,0 @@ });

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