mix-objects
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -17,2 +17,4 @@ module.exports = multiple; | ||
function one (target, source) { | ||
if (!source) return; | ||
var key; | ||
@@ -19,0 +21,0 @@ for (key in source) { |
{ | ||
"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]) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1130
19