npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

mergee

v2.0.1

Published

Utilities for objects

Downloads

44,171

Readme

npm badge types badge CI badge

mergee

Utilities for objects

This is a selection of utilities for objects containing:

  • merge - merge multiple sources into a target object; merges Map() and Set()
  • mergeExt - same as merge but with options
  • clone - deep clone of an object or array.
  • pick - pick properties from an object
  • omit - omit properties from an object
  • isCircular - check object for circular structures
  • deepEqual - deep comparison
  • set - set values on objects
  • get - get values from objectsΩ

Table of Contents

Methods

merge(target, ...source)

Deep merge of multiple objects into target.
Merges Map and Set.
Clones ArrayBuffer, Date,Error, Function,RegExp and TypedArrays.

Example

import { merge } from 'mergee'
const target = { t: 1, x: { y: 'z' } }
const source1 = { t: { s1: /source1/ } }
const source2 = { t: { s2: new Date(100), x: null } }

merge(target, source1, source2)
//> target === { t: { s1: /source1/, s2: Wed Dec 31 1969 17:00:00 GMT-0700 (MST) }, x: null }

Parameters

target: object | function | any[], target object

source: any, arguments 2 ... n

Returns: object | function | any[], merged target

mergeExt(opts, target, source)

extended merge

Example

import { mergeExt } from 'mergee'
const target = { t: 1, x: { y: 'z' } }
const source1 = { t: { s1: /source1/ } }
const source2 = { t: { s2: new Date(100), x: null } }

mergeExt({ ignoreNull: true }, target, source1, source2)
//> target === { t: { s1: /source1/, s2: Wed Dec 31 1969 17:00:00 GMT-0700 (MST) }, x: { y: 'z' } }

Parameters

opts: object, options

opts.ignoreNull: boolean, treat source === null as undefined - target does not get deleted

opts.ignoreCircular: boolean, ignore cirular structures - no error gets thrown

opts.arrayMerge: (target: any, source: any, opts) => any - custom array merge function.

If deep comparison for array merge operations is required:

import { arrayMergeDeep as arrayMerge, mergeExt } from 'mergee'
const target = { a: [{ b: 1 }, 2] }
const source = { a: [3, { b: 1 }] }
r = mergeExt({ arrayMerge }, target, source)
//> r = { a: [{ b:1 }, 2, 3]}

target: object | function | any[], target object

source: any, arguments 2 ... n

Returns: object | function | any[], merged target

clone(obj)

Perform a deep clone of obj

Example

import { clone } from 'mergee'
const obj = { a: { b: { c: 1 } } }

var cloned = clone(obj)
//> (cloned !== obj)
//> (cloned.a !== obj.a)
//> (cloned.a.b !== obj.a.b)

Parameters

obj: object | any[], to get cloned

Returns: object | any[], deep cloned object

pick(obj, props)

pick properties from obj into a new object

Example

import { pick } from 'mergee'
const obj = { a: 1, b: [1, 2], c: { cc: 3, 'c-d': 4 }, '0d': { '0d0': 5 } }
const r = pick(obj, ['a', 'b[1]', 'c["c-d"]', '0d.0d0'])
//> r = { a: 1, b: { '1': 2 }, c: { 'c-d': 4 }, '0d': { '0d0': 5 } }
r = pick(obj, 'a, b[1], c["c-d"], 0d.0d0')
//> r = { a: 1, b: { '1': 2 }, c: { 'c-d': 4 }, '0d': { '0d0': 5 } }

Parameters

obj: object, object to pick properties from

props: string | string[], Array of properties or comma separated string of properties

Returns: object, object with picked properties

omit(obj, props)

omit properties from obj into a new object

Example

import { omit } from 'mergee'
const obj = { a: 1, b: [1, 2], c: { cc: 3, 'c-d': 4 }, '0d': { '0d0': 5 } }
let r = omit(obj, ['a', 'b[1]', 'c["c-d"]', '0d.0d0'])
//> r = { b: [ 1,  ], c: { cc: 3 }, '0d': {} }
r = omit(obj, 'a, b[1], c["c-d"], 0d.0d0')
//> r = { b: [ 1,  ], c: { cc: 3 }, '0d': {} }

Parameters

obj: object, object

props: string | string[], Array of properties or comma separated string of properties

Returns: object, object with omitted properties

get(obj, keys, def?)

get properties from obj

Example

import { get } from 'mergee'
const obj = { a: { b: { c: 1 } } }
let r = get(obj, ['a', 'b', 'c'])
//> r = 1
r = get(obj, 'a.b')
//> r = { c: 1 }
r = get(obj, 'there.is.no.such.property') // this will not throw!
//> r = undefined

Parameters

obj: object, object to select from

keys: string | string[], Array of properties or dot separated string of properties; If using a String avoid using property names containing a .

def? default value if key was not found

Returns: object|_def, selected object or default value

set(obj, keys, value)

set a property in obj

Example

import { set } from 'mergee'
const obj = {}
let r = set(obj, ['a', 'b'], { c: 1 })
//> r = { a: { b: { c: 1 } } }
r = set(obj, 'a.b.d', 2)
//> r = { a: { b: { c:1, d:2 } } }

Parameters

obj: object, object to select from

keys: string|string[], Array of properties or dot separated string of properties; If using a String avoid using property names containing a .

value: any, The value to set

Returns: object, set object

isCircular(obj)

check if an object obj contains circular structures

Example

import { isCircular } from 'mergee'
const obj = { a: {} }
obj.a.c = { c: 1 }
//> isCircular(obj) === true

Parameters

obj: object, Object to check

Returns: boolean, true if obj is circular

deepEqual(actual, expected)

deep comparison of actual and expected

Parameters

actual: any, deep comparison of actual and expected

expected: any, deep comparison of actual and expected

Returns: boolean, true if actual deep equals expected

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work or correctly attributed with the source of its origin and licence.

License

This module contains code from other MIT licensed sources:

Copyright (c) 2015- commenthol (MIT License)

See LICENSE for more info.