1.0.2 ā€¢ Published 3 years ago

@viking04/merge v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@viking04/merge

Description

@viking04/merge is a simple npm package to merge many sources to target.

Note this package can be used only with plain objects or arrays and doesn't support complex types such as Date and Regex currently.

Installation

npm i @viking04/merge --save

Usage

var merge = require("@viking04/merge")
var a = {"a":{"red":"apple"}}
var b = {"b":{"yellow":"mango"}}
var c = {"a":{"orange":"orange"}}
merge(a,b,c)
console.log(a)
OUTPUT:
{ a: { red: 'apple', orange: 'orange' }, b: { yellow: 'mango' } }

Author

šŸ‘¤ Thrivikram G

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago