JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1302188
  • Score
    100M100P100Q190552F

Recursively merge values in a javascript object.

Package Exports

  • merge-deep

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (merge-deep) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

merge-deep NPM version

Recursively merge values in a javascript object.

Based on mout's implementation of merge

Install

Install with npm:

npm i merge-deep --save-dev

Run tests

npm test

Usage

var merge = require('merge-deep');

merge({a: {b: {c: 'c', d: 'd'}}}, {a: {b: {e: 'e', f: 'f'}}});
//=> { a: { b: { c: 'c', d: 'd', e: 'e', f: 'f' } } }

Author

Jon Schlinkert

These are other projects I maintain:

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on October 07, 2014.