Socket
Socket
Sign inDemoInstall

viewmodel

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

viewmodel - npm Package Compare versions

Comparing version 0.4.9 to 0.4.10

8

lib/databases/couchDb.js

@@ -361,5 +361,11 @@ var cradle = require('cradle')

extend: function(obj) {
return _.extend(_.clone(this, true), obj);
var res = _.assign(_.assign({}, this), obj);
for (var f in this) {
if (_.isFunction(this[f])) {
res[f] = this[f];
}
}
return res;
}
};

@@ -166,5 +166,11 @@ var _ = require('lodash')

extend: function(obj) {
return _.extend(_.clone(this, true), obj);
var res = _.assign(_.assign({}, this), obj);
for (var f in this) {
if (_.isFunction(this[f])) {
res[f] = this[f];
}
}
return res;
}
};

@@ -174,5 +174,11 @@ var mongo = require('mongodb')

extend: function(obj) {
return _.extend(_.clone(this, true), obj);
var res = _.assign(_.assign({}, this), obj);
for (var f in this) {
if (_.isFunction(this[f])) {
res[f] = this[f];
}
}
return res;
}
};

@@ -164,5 +164,11 @@ var path = require('path')

extend: function(obj) {
return _.extend(_.clone(this, true), obj);
var res = _.assign(_.assign({}, this), obj);
for (var f in this) {
if (_.isFunction(this[f])) {
res[f] = this[f];
}
}
return res;
}
};

2

package.json
{
"author": "adrai",
"name": "viewmodel",
"version": "0.4.9",
"version": "0.4.10",
"private": false,

@@ -6,0 +6,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