JSPM

n-deep-merge

0.0.2
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 858
    • Score
      100M100P100Q103201F
    • License MIT

    deep merge a collection of javascript objects and arrays

    Package Exports

    • n-deep-merge

    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 (n-deep-merge) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    n-deep-merge

    Build Status

    What is n-deep-merge?

    n-deep-merge is a CommonJS/AMD/Window compatible function for deep merging of any number of objects and arrays.

    Features

    • Deep merge any number of complicated objects or arrays
    • No external libraries required
    • Backward compatible to IE6

    Examples

    Simple Object Merge

    var merge = require('n-deep-merge');
    
    var foo = {
      name: 'foo'
    }
    
    var baz = {
      type: 'widget'
    }
    
    var obj = merge(foo, baz);
    
    // output
    {
      name: 'foo',
      type: 'widget'
    }
    

    More Complex Example

    var merge = require('n-deep-merge');
    
    var foo = {
      name: 'foo'
      zones: [{
        name: 'a',
        width: 100,
        height: 200
      }
      ]
    };
    
    var baz = {
      type: 'widget',
      zones: [{
        name: 'b',
        width: 200,
        height: 400
      }]
    }
    
    var obj = merge(foo, baz);
    
    // output
    {
      name: 'foo',
      type: 'widget',
      zones: [{
        name: 'a',
        width: 100,
        height: 200
      },
      {
        name: 'b',
        width: 200,
        height: 400
      }]}
    

    Contributing

    I welcome any contributions. Please feel free to offer suggestions and submit pull requests.

    License

    The MIT License

    Copyright (c) 2014 Eric Clifford

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.