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

vue-data-proxy

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-data-proxy - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

5

dist/vue-data-proxy.esm.js
function clone(obj){
if(obj === undefined) {
return obj
}
return JSON.parse(JSON.stringify(obj));

@@ -96,3 +99,3 @@ }

},
set: function set(oldVal, val) {
set: function set(val) {
p.commit.call(this, val);

@@ -99,0 +102,0 @@ }

@@ -5,2 +5,5 @@ var vueDataProxy = (function (exports) {

function clone(obj){
if(obj === undefined) {
return obj
}
return JSON.parse(JSON.stringify(obj));

@@ -100,3 +103,3 @@ }

},
set: function set(oldVal, val) {
set: function set(val) {
p.commit.call(this, val);

@@ -103,0 +106,0 @@ }

@@ -8,2 +8,5 @@ (function (global, factory) {

function clone(obj){
if(obj === undefined) {
return obj
}
return JSON.parse(JSON.stringify(obj));

@@ -103,3 +106,3 @@ }

},
set: function set(oldVal, val) {
set: function set(val) {
p.commit.call(this, val);

@@ -106,0 +109,0 @@ }

2

package.json
{
"name": "vue-data-proxy",
"version": "1.0.3",
"version": "1.0.4",
"description": "Easily create deep object proxy (mainly to map a Vuex nested sub-state to a computed property)",

@@ -5,0 +5,0 @@ "keywords": [

export function clone(obj){
if(obj === undefined) {
return obj
}
return JSON.parse(JSON.stringify(obj));

@@ -4,0 +7,0 @@ }

@@ -93,3 +93,3 @@

},
set(oldVal, val) {
set(val) {
p.commit.call(this, val);

@@ -96,0 +96,0 @@ }

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