Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mergician

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mergician

Deep merge/clone JavaScript objects. Includes options to filter, inspect, and modify properties, merge and sort arrays, and remove duplicate array items. Properly handles property accessors (getters/setters) and descriptors. Returns new object without mod

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10K
increased by16.32%
Maintainers
1
Weekly downloads
 
Created
Source

Mergician

NPM GitHub Workflow Status (main) Codacy code quality License: MIT jsDelivr Tweet

Mergician is a flexible, light-weight utility for deep (recursive) merging/cloning of JavaScript objects.

Why?

Unlike native methods and other merge/clone utilities, Mergician provides flexible options for customizing the merge process. These options make it easy to filter properties, inspect and modify properties before/after merging, merge and sort arrays, and remove duplicate array items. Property accessors and descriptors are also handled properly, ensuring that getter/setter functions are retained and descriptor values are defined on the newly merged object.

Features

  • Deep merge/clone JavaScript objects
  • Filter properties
  • Inspect and modify properties
  • Merge arrays
  • Sort arrays
  • Remove duplicate array items ("dedup")
  • Properly handle property accessors (getters/setters) and descriptors
  • Returns new object without modifying source objects (immutable)

Platform Support

Node 10+
Chrome 61+
Edge 16+
Firefox 60+
Safari 10.1+

Installation

NPM
npm install mergician
// ES module
import mergician from 'mergician';
// CommonJS module
const mergician = require('mergician');
CDN

Available on jsdelivr (below), unpkg, and other CDN services that auto-publish npm packages.

// ES module @ latest v1.x.x (see @ version in URL)
import mergician from 'https://cdn.jsdelivr.net/npm/mergician@1/dist/mergician.min.mjs';
<!-- Global "mergician" @ latest v1.x.x (see @ version in URL) -->
<script src="https://cdn.jsdelivr.net/npm/mergician@1/dist/mergician.min.js">

Usage & Options

See the documentation site for details and demos.

Contact & Support

License

This project is licensed under the MIT license.

Copyright (c) John Hildenbiddle (@jhildenbiddle)

Keywords

FAQs

Package last updated on 14 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc