Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Uniquely flexible and light-weight utility for cloning and deep (recursive) merging of JavaScript objects. Supports descriptor values, accessor functions, and custom prototypes. Provides advanced options for customizing the clone/merge process.

License

NotificationsYou must be signed in to change notification settings

jhildenbiddle/mergician

Repository files navigation

NPMGitHub Workflow Status (main)Codacy code qualityLicense: MITjsDelivrSponsor this project

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

Unlike native methods and other utilities, Mergician faithfully clones and merges objects by properly handlingdescriptor values,accessor functions, and prototype properties while offering advanced options for customizing the clone/merge process.

Features

  • Deep (recursive) clone/merge JavaScript objects
  • Generates new object without modifying source object(s)
  • Clone/merge enumerable and non-enumerable properties
  • Clone/merge propertydescriptor values
  • Retain, skip, or convertaccessor functions to static values
  • Inspect, filter, and modify properties
  • Merge, skip, or hoist prototype properties
  • Merge or skip key intersections, unions, and differences
  • Merge, sort, and remove duplicate array items
  • IntelliSense / code hinting support
  • TypeScript support
  • Lightweight (2k min+gzip) and dependency-free

Platform Support

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

Examples

Basic object cloning using default options:

// ES module shown. CommonJS module also available (see below).import{mergician}from'mergician';constobj1={a:[1,1],b:{c:1,d:1}};constclonedObj=mergician({},obj1);// Resultsconsole.log(clonedObj);// { a: [1, 1], b: { c: 1, d: 1 }}console.log(clonedObj===obj1);// falseconsole.log(clonedObj.a===obj1.a);// falseconsole.log(clonedObj.b===obj1.b);// false

Advanced object merging using custom options:

// ES module shown. CommonJS module also available (see below).import{mergician}from'mergician';constobj1={a:[1,1],b:{c:1,d:1}};constobj2={a:[2,2],b:{c:2}};constobj3={e:3};constmergedObj=mergician({skipKeys:['d'],appendArrays:true,dedupArrays:true,filter({ depth, key, srcObj, srcVal, targetObj, targetVal}){if(key==='e'){targetObj['hello']='world';returnfalse;}}})(obj1,obj2,obj3);// Resultconsole.log(mergedObj);// { a: [1, 2], b: { c: 2 }, hello: 'world'}

Installation

NPM

npm install mergician
// ES moduleimport{mergician}from'mergician';
// CommonJS moduleconst{ mergician}=require('mergician');

CDN

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

💡 Note the@ version lock in the URLs below. This prevents breaking changes in future releases from affecting your project and is therefore the safest method of loading dependencies from a CDN. When a new major version is released, you will need to manually update your CDN URLs by changing the version after the@ symbol.

// ES module @ latest v2.x.ximport{mergician}from'https://cdn.jsdelivr.net/npm/mergician@2';

Usage & Options

See thedocumentation site for details.

Sponsorship

Asponsorship is more than just a way to show appreciation for the open-source authors and projects we rely on; it can be the spark that ignites the next big idea, the inspiration to create something new, and the motivation to share so that others may benefit.

If you benefit from this project, please consider lending your support and encouraging future efforts bybecoming a sponsor.

Thank you! 🙏🏻

Contact & Support

  • Follow 👨🏻‍💻@jhildenbiddle onTwitter andGitHub for announcements
  • Create a 💬GitHub issue for bug reports, feature requests, or questions
  • Add a ⭐️star on GitHub and 🐦tweet to promote the project
  • Become a 💖sponsor to support the project and future efforts

License

This project is licensed under theMIT license.

Copyright (c) John Hildenbiddle (@jhildenbiddle)

About

Uniquely flexible and light-weight utility for cloning and deep (recursive) merging of JavaScript objects. Supports descriptor values, accessor functions, and custom prototypes. Provides advanced options for customizing the clone/merge process.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp