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

mix-objects

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mix-objects - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

6

index.js
module.exports = mix;
function mix (target, sources) {
var i = sources.length;
var i = -1;
var len = sources.length;
var key;
while (i--) {
while (++i < len) {
for (key in sources[i]) {
if (target.hasOwnProperty(key)) continue;
target[key] = sources[i][key];

@@ -10,0 +12,0 @@ }

{
"name": "mix-objects",
"version": "0.0.0",
"version": "0.0.1",
"description": "Mix specified objects",

@@ -17,7 +17,7 @@ "main": "index.js",

"repository": {
"url": "git@github.com:azer\/mix-objects.git",
"url": "git@github.com:azer/mix-objects.git",
"type": "git"
},
"author": "Azer Ko\u00e7ulu <azer@kodfabrik.com>",
"author": "Azer Koçulu <azer@kodfabrik.com>",
"license": "BSD"
}
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