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

soef

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

soef - npm Package Compare versions

Comparing version 0.1.28 to 0.1.30

2

package.json
{
"name": "soef",
"version": "0.1.28",
"version": "0.1.30",
"description": "library for ioBroker",

@@ -5,0 +5,0 @@ "author": {

@@ -1471,3 +1471,17 @@ /**

};
Array.prototype.contains = function(propertyName, entry) {
return this.find(function(v) {
return v[propertyName] === entry[propertyName];
})
};
Array.prototype.add = function (v) {
if (!this.contains(v)) {
this.push(v);
return true;
}
return false;
};
};

@@ -1474,0 +1488,0 @@ exports.extendArray = extendArray;

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