@viking04/merge

1.0.2 • Public • Published

@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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @viking04/merge

      Weekly Downloads

      1

      Version

      1.0.2

      License

      MIT

      Unpacked Size

      3.25 kB

      Total Files

      5

      Last publish

      Collaborators

      • viking04