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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@apphp/object-resolver

v3.2.0

Published

Provides general functionality for dealing with nested properties in JavaScript objects.

Readme

Object Resolver

Provides general functionality for dealing with nested properties in JavaScript objects

 

Available methods:

  • isEqual
  • filterObject
  • removeUndefinedProperties
  • hasNestedProperty
  • getNestedProperty
  • fetchLastNestedProperty
  • setNestedProperty
  • deleteNestedProperty
  • setNestedPropertyImmutable
  • deleteNestedPropertyImmutable
  • cloneObject
  • cloneStructure

 

Install

Install / Uninstall with npm:

$ npm install @apphp/object-resolver

Uninstall

$ npm uninstall @apphp/object-resolver

Run Tests

$ npm run test

After tests running coverage report can be found in coverage directory

Run ESLint

To perform ESlint check run following command:

$ npm run eslint

To fix issues, found by ESLint run:

$ npm run eslint-fix

Usage

Require package:

// by using require
const resolver = require('@apphp/object-resolver');
// by using import 
//import resolver from "@apphp/object-resolver";
// by using object destructor
//const {cloneObject} = require('dist/object-resolver');

isEqual(value1, value2)

Compares two values for deep equality.

isEqual() performs a recursive deep comparison and supports primitives, arrays, plain objects, and common built-in JavaScript types.

Behavior highlights:

  • Object key order does not matter ({ a: 1, b: 2 } equals { b: 2, a: 1 })
  • Nested objects/arrays are compared deeply
  • Supports Date, RegExp, Map, Set, ArrayBuffer, and typed arrays
  • Handles circular references safely
  • Uses strict prototype checks (values with different prototypes are not equal)
resolver.isEqual({ a: 1, b: { c: 2 } }, { b: { c: 2 }, a: 1 }); // true
resolver.isEqual([1, 2, 3], [1, 2, 4]); // false

resolver.isEqual(new Date('2023-01-01'), new Date('2023-01-01')); // true
resolver.isEqual(/abc/gi, /abc/g); // false

resolver.isEqual(new Set([1, { a: 2 }]), new Set([{ a: 2 }, 1])); // true

const x = { a: 1 };
const y = { a: 1 };
x.self = x;
y.self = y;
resolver.isEqual(x, y); // true

filterObject(obj, predicate)

Filters the properties of an object based on a predicate function

const filtered = resolver.filterObject({ a: 1, b: 2, c: 3, d: 4 }, (value, key) => value % 2 === 0);

removeUndefinedProperties(obj)

Removes properties with undefined values from an object

const cleaned = resolver.removeUndefinedProperties({ a: 1, b: undefined, c: { d: 4, e: undefined } });

hasNestedProperty(obj, propertyPath)

Checks whether a nested property exists and returns a boolean result

const exists = resolver.hasNestedProperty(obj, 'innerObject.deepObject.value'); // true/false

getNestedProperty(objParam, propertyPath, defaultValue)

Get nested property exists and if not empty perform some action

const prop = resolver.getNestedProperty(obj, 'innerObject.deepObject.value')
if (prop) {
  // ...
}

fetchLastNestedProperty(obj, path)

Fetch last chained nested property

const prop = resolver.fetchLastNestedProperty(obj, 'prop');

setNestedProperty(obj, path, value)

Set a deeply nested property in an object (mutates the original object)

Behavior notes:

  • Mutates obj in place; returns undefined
  • Creates missing intermediate objects on the path when needed
  • path may be a dot-separated string or an array of keys
  • Throws an error for invalid path type (not string/array)
  • Throws an error for protected keys: __proto__, constructor, prototype
  • Supports numeric object keys; limited bracket-style handling is supported by current implementation
const prop = resolver.setNestedProperty(obj, 'user.profile.name', 'John Doe');

deleteNestedProperty(obj, path)

Delete a deeply nested property in an object (mutates the original object)

Behavior notes:

  • Mutates obj in place; returns undefined
  • If obj is null or not an object, it does nothing
  • If any intermediate path segment is missing, it exits early (no throw)
  • For array targets, it removes items via splice(index, 1)
  • For object targets, it uses delete on the last key
const prop = resolver.deleteNestedProperty(obj, 'user.profile.name', 'John Doe');

setNestedPropertyImmutable(obj, path, value)

Set a deeply nested property without mutating the original object

const updatedObj = resolver.setNestedPropertyImmutable(obj, 'user.profile.name', 'John Doe');

deleteNestedPropertyImmutable(obj, path)

Delete a deeply nested property without mutating the original object

const updatedObj = resolver.deleteNestedPropertyImmutable(obj, 'user.profile.name');

cloneObject(obj)

Deep cloning of object

const objCopy = resolver.cloneObject(obj);

cloneStructure(obj, options)

Deep cloning of structure (node > v17)

const structureCopy = resolver.cloneStructure(obj, options);

Mutation and edge cases

Mutates input

  • setNestedProperty
  • deleteNestedProperty

Returns new value (non-mutating)

  • filterObject
  • removeUndefinedProperties
  • setNestedPropertyImmutable
  • deleteNestedPropertyImmutable
  • cloneObject
  • cloneStructure

Read-only helpers (no mutation)

  • isEqual
  • hasNestedProperty
  • getNestedProperty
  • fetchLastNestedProperty

Edge-case quick reference

  • hasNestedProperty(obj, path) returns false when obj or path is missing/falsy
  • getNestedProperty(obj, path, defaultValue) returns defaultValue only when resolved value is undefined
  • setNestedProperty throws for invalid path type and protected keys
  • deleteNestedProperty safely no-ops for invalid root/non-existing intermediate path

Examples

const obj1 = { a: 1, b: { c: 2 } };
const obj2 = { a: 1, b: { c: 2 } };
const compareResult = resolver.isEqual(obj1, obj2);
const original = { a: 1, b: 2, c: 3, d: 4 };
const filtered = resolver.filterObject(original, (value, key) => value % 2 === 0);
console.log(filtered); 
const original = { a: 1, b: undefined, c: { d: 4, e: undefined } };
const cleaned = resolver.removeUndefinedProperties(original);
const obj = {
  innerObject: {
    deepObject: {
      value: 'Here I am'
    }
  }
};

console.log(resolver.hasNestedProperty(obj, 'innerObject.deepObject.value'));                         // true
console.log(resolver.hasNestedProperty(obj, 'innerObject.deepObject.wrongValue'));                    // false
console.log(resolver.getNestedProperty(obj, 'innerObject.deepObject.value'));                         // 'Here I am'
console.log(resolver.getNestedProperty(obj, 'innerObject.deepObject.wrongValue'));                    // undefined
console.log(resolver.getNestedProperty(obj, 'innerObject.deepObject.wrongValue.oneMore', 'Oh-h-h'));  // 'Oh-h-h'
const obj = {
  innerObject: {
    deepObject: [
      { name: 'John' },
      { name: 'Nick' },
      { name: 'Ron' }
    ]
  }
};

console.log(resolver.hasNestedProperty(obj, 'innerObject.deepObject.0.name'));              // true
console.log(resolver.getNestedProperty(obj, 'innerObject.deepObject.1.name'));              // 'Nick'
const obj = { role: { role: { role: 'student' } }};
const role = resolver.fetchLastNestedProperty(obj, 'role');
const obj = {'a':{'b':2}, 'c':3};
const objCopy = resolver.cloneObject(obj);

License

MIT