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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ts-object-manager

v1.0.3

Published

Utility for objects writed with TS

Downloads

362

Readme

ts-object-manager

An npm package that manages objects with TypeScript (TS) typically provides utilities to handle and manipulate objects in a type-safe way. It ensures strict typing, enhancing code reliability by leveraging TypeScript’s static type checking. Such packages might offer functions for deep cloning, merging, mutating, or transforming objects while preserving type definitions. They could also include helpers for safely accessing nested properties, handling immutability, or performing object validation, all with TypeScript’s rich type inference to avoid runtime errors

🛠️ Tech Stack

🛠️ Install Dependencies

npm i ts-object-manager

📄 Documentation

All methods list

isObject

Checks if the given value is an object.

console.log(isObject({})); // true
console.log(isObject(null)); // false
console.log(isObject([])); // true
console.log(isObject(42)); // false

isPlainObject

Checks if the given value is a plain object.

console.log(isPlainObject({})); // true
console.log(isPlainObject(new Date())); // false
console.log(isPlainObject([])); // false
console.log(isPlainObject(Object.create(null))); // true

isObjectEmpty

Checks if the given object is empty.

// Empty object
const emptyObj = {};

// Check if the object is empty
const result1 = isObjectEmpty(emptyObj);

console.log(result1); // Output: true
// Non-empty object
const nonEmptyObj = {
  name: 'John',
  age: 25
};

// Check if the object is empty
const result2 = isObjectEmpty(nonEmptyObj);

console.log(result2); // Output: false
// Array is not considered an object for this function
const array = [1, 2, 3];

// Check if the array is empty (should return false because it's not an object)
const result3 = isObjectEmpty(array);

console.log(result3); // Output: false

isObjectDeepEqual

Performs a deep comparison between two values to determine if they are equivalent.

const objA = { a: 1, b: { c: 2 } };
const objB = { a: 1, b: { c: 2 } };
console.log(isObjectDeepEqual(objA, objB)); // true
const objC = { a: 1, b: { c: 3 } };
console.log(isObjectDeepEqual(objA, objC)); // false
console.log(isObjectDeepEqual([1, 2, 3], [1, 2, 3])); // true
console.log(isObjectDeepEqual([1, 2, 3], [1, 2])); // false

isPropertyDefined

Checks if a property is defined on an object or any of its nested objects.

const sample = { a: 1, b: { c: 2 } };
console.log(isPropertyDefined(sample, 'a')); // true
console.log(isPropertyDefined(sample, 'b')); // true
console.log(isPropertyDefined(sample, 'c')); // false
console.log(isPropertyDefined(sample, 'b.c')); // true

isObjectHasTheStructure

Checks if the given object has the same structure as the specified structure object.

const obj1 = { name: "Alice", age: 30, address: { city: "Wonderland" } };
const structure1 = { name: "", age: 0, address: { city: "" } };
console.log(isObjectHasTheStructure(obj1, structure1)); // Output: true
const obj2 = [ { name: "Bob" }, { name: "Charlie" } ];
const structure2 = [ { name: "" }, { name: "" } ];
console.log(isObjectHasTheStructure(obj2, structure2)); // Output: true

cloneObject

Creates a deep clone of the given object.

const original = { a: 1, b: { c: 2 } };
const cloned = cloneObject(original);console.log(isPropertyDefined(sample, 'b')); // true
console.log(cloned); // { a: 1, b: { c: 2 } }
console.log(cloned === original); // false
console.log(cloned.b === original.b); // false

getObjectDiffIterative

Compares two objects or arrays iteratively and returns the differences between them.

const obj1 = {
  name: "John",
  age: 25,
  address: {
    city: "New York",
    zip: "10001"
  }
};

const obj2 = {
  name: "John",
  age: 30,  // Changed age
  address: {
    city: "Los Angeles",  // Changed city
    zip: "10001"
  }
};

const diff = getObjectDiffIterative(obj1, obj2);
console.log(diff);

// output
{
  "age": 30,
  "address": {
    "city": "Los Angeles"
  }
}
const obj1 = {
  items: [1, 2, 3],
  details: {
    color: "red",
    dimensions: [10, 20]
  }
};

const obj2 = {
  items: [1, 2, 4],  // Changed last element in array
  details: {
    color: "blue",  // Changed color
    dimensions: [10, 20]  // No change
  }
};

const diff = getObjectDiffIterative(obj1, obj2);
console.log(diff);

// output
{
  "items": [1, 2, 4],
  "details": {
    "color": "blue"
  }
}

getAllObjectKeys

Recursively retrieves all keys of a given object, including keys from nested objects.

const obj = {
    name: 'Alice',
    details: {
      age: 30,
      city: 'Wonderland'
    },
    hobbies: ['reading', 'jogging']
  };

const keys = getAllObjectKeys(obj);
console.log(keys);
// Output: ["name", "details.age", "details.city", "hobbies"]

removeEmptyObjects

Recursively removes empty objects and undefined values from an object or array.

const data = {
  a: {
    b: {},
    c: 1,
  },
  d: [],
  e: {
    f: {
      g: {},
    },
  },
  h: null,
};

const cleanedData = removeEmptyObjects(data);
console.log(cleanedData);
// Output: { a: { c: 1 }, d: [], h: null }
const arrayData = [
  { id: 1, value: {} },
  { id: 2, value: { name: "Test" } },
  {},
];

const cleanedArray = removeEmptyObjects(arrayData);
console.log(cleanedArray);
// Output: [ { id: 2, value: { name: "Test" } } ]

removeUndefinedKeys

Recursively removes keys with undefined values from an object or array.

const data = {
  a: 1,
  b: undefined,
  c: {
    d: undefined,
    e: 3,
  },
  f: [],
  g: null,
};

const cleanedData = removeEmptyKeys(data);
console.log(cleanedData);
// Output: { a: 1, c: { e: 3 }, f: [], g: null }
const arrayData = [
    { id: 1, value: undefined },
    { id: 2, value: { name: "Test" } },
    { id: 3, value: null },
  ];
const cleanedArray = removeEmptyKeys(arrayData);
console.log(cleanedArray);
// Output: [ { id: 2, value: { name: "Test" } }, { id: 3, value: null } ]

removeKeysFromObject

Recursively removes specified keys from an object or array.

const data = {
  name: "Alice",
  age: 30,
  location: {
    city: "Wonderland",
    country: "Fantasy"
  },
  hobbies: ["reading", "traveling"],
};

const cleanedData = removeKeysFromObject(data, ["age", "location"]);
console.log(cleanedData);
// Output: { name: "Alice", hobbies: ["reading", "traveling"] }
const arrayData = [
  { id: 1, value: "Item 1", toRemove: true },
  { id: 2, value: "Item 2", toRemove: false },
];

const cleanedArray = removeKeysFromObject(arrayData, ["toRemove"]);
console.log(cleanedArray);
// Output: [ { id: 1, value: "Item 1" }, { id: 2, value: "Item 2" } ]

mergeTwoObjects

Merges two objects into one, combining their properties.

const object1 = {
  a: 1,
  b: {
    c: 2,
    d: 3
  }
};

const object2 = {
  b: {
    d: 4,
    e: 5
  },
  f: 6
};

const merged = mergeTwoObjects(object1, object2);
console.log(merged);
// Output: { a: 1, b: { c: 2, d: 4, e: 5 }, f: 6 }
const objA = { x: 10, y: { z: 20 } };
const objB = { y: { a: 30 } };

const result = mergeTwoObjects(objA, objB);
console.log(result);
// Output: { x: 10, y: { z: 20, a: 30 } }

omitKeysOfObject

Creates a new object by omitting specified keys from the input object.

const originalObj = {
  id: 1,
  name: 'Alice',
  age: 30,
  city: 'Wonderland'
};

const omittedObj = omitKeysOfObject(originalObj, ['age', 'city']);
console.log(omittedObj);
// Output: { id: 1, name: 'Alice' }
const sampleData = {
  x: 10,
  y: 20,
  z: 30
};

const result = omitKeysOfObject(sampleData, ['y']);
console.log(result);
// Output: { x: 10, z: 30 }

transformToFlattenObject

Transforms a nested object into a flattened object. It converts all nested properties into a single level by concatenating their keys with a dot (.) separator.

const nestedObject = {
  name: 'John',
  address: {
    city: 'New York',
    zip: '10001'
  },
  contact: {
    email: '[email protected]',
    phone: {
      home: '123-456-7890',
      mobile: '987-654-3210'
    }
  }
};

const flattened = transformToFlattenObject(nestedObject);
console.log(flattened);
// Output: {
//   name: 'John',
//   address.city: 'New York',
//   address.zip: '10001',
//   contact.email: '[email protected]',
//   contact.phone.home: '123-456-7890',
//   contact.phone.mobile: '987-654-3210'
// }
const simpleObj = {
  a: 1,
  b: 2
};

const result = transformToFlattenObject(simpleObj);
console.log(result);
// Output: { a: 1, b: 2 }

transformToUnflattenObject

Converts a flattened object back into a nested object structure. It reconstructs the original object by splitting keys that are concatenated with a dot (.) separator.

const flattenedObject = {
  name: 'Alice',
  address: { city: 'Wonderland' },
  address: { zip: '12345' },
  contact: { email: '[email protected]' },
  contact: { phone: { home: '555-1234', mobile: '555-5678' } }
};

const nested = transformToUnflattenObject(flattenedObject);
console.log(nested);
// Output: {
//   name: 'Alice',
//   address: {
//     city: 'Wonderland',
//     zip: '12345'
//   },
//   contact: {
//     email: '[email protected]',
//     phone: {
//       home: '555-1234',
//       mobile: '555-5678'
//     }
//   }
// }
const flatData = {
  id: 1,
  name: 'Bob',
  details: { age: 30 },
  details: { location: { country: 'Wonderland' } }
};

const result = transformToUnflattenObject(flatData);
console.log(result);
// Output: {
//   id: 1,
//   name: 'Bob',
//   details: {
//     age: 30,
//     location: {
//       country: 'Wonderland'
//     }
//   }
// }

getNestedValueOfObject

Retrieves a nested property value from an object using a dot-separated path.

const data = {
  user: {
    id: 1,
    profile: {
      name: 'Alice',
      age: 28
    }
  }
};

const name = getNestedValueOfObject(data, 'user.profile.name');
console.log(name);
// Output: 'Alice'
const missingProperty = getNestedValueOfObject(data, 'user.profile.email');
console.log(missingProperty);
// Output: undefined

deepFreezeObject

Deep freezes an object, preventing any changes to its properties and nested objects.

const obj = { a: 1, b: { c: 2 } };
const frozenObj = deepFreezeObject(obj);
frozenObj.b.c = 3; // TypeError: Cannot assign to read only property 'c' of object '#<Object>'

mapValuesObject

Maps the values of an object to a new object using a provided mapping function.

const obj = { a: 1, b: 2, c: 3 };
const mappedObj = mapValuesObject(obj, (value) => value * 2);
console.log(mappedObj); // Output: { a: 2, b: 4, c: 6 }

🍰 Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

🙇 Author

Ivan Isayenko