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

underscore-plus

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

underscore-plus - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

10

lib/underscore-plus.js

@@ -355,5 +355,11 @@ (function() {

isEqualForProperties: function() {
var a, b, properties;
var a, b, properties, property, _i, _len;
a = arguments[0], b = arguments[1], properties = 3 <= arguments.length ? __slice.call(arguments, 2) : [];
return _.isEqual(_.pick.apply(_, [a].concat(__slice.call(properties))), _.pick.apply(_, [b].concat(__slice.call(properties))));
for (_i = 0, _len = properties.length; _i < _len; _i++) {
property = properties[_i];
if (!_.isEqual(a[property], b[property])) {
return false;
}
}
return true;
}

@@ -360,0 +366,0 @@ };

2

package.json
{
"name": "underscore-plus",
"version": "1.2.0",
"version": "1.2.1",
"description": "Underscore plus additional utilities",

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

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