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.2 to 0.0.3

2

index.js

@@ -17,2 +17,4 @@ module.exports = multiple;

function one (target, source) {
if (!source) return;
var key;

@@ -19,0 +21,0 @@ for (key in source) {

6

package.json
{
"name": "mix-objects",
"version": "0.0.2",
"version": "0.0.3",
"description": "Mix specified objects",
"main": "index.js",
"scripts": {
"test": "prova"
"test": "node test"
},
"devDependencies": {
"prova": "*"
"prova": "^2.1.2"
},

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

@@ -14,7 +14,7 @@ ## mix-objects

```js
mix = require('mix-objects')
var mix = require('mix-objects')
foo = { a: 1, b: 2 }
bar = { c: 3, d: 4 }
qux = { e: 5, f: 6 }
var foo = { a: 1, b: 2 }
var bar = { c: 3, d: 4 }
var qux = { e: 5, f: 6 }

@@ -21,0 +21,0 @@ mix(foo, [bar, qux])

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