📄️ compare-objects
Function that compares two objects and returns either the differences between them or their common properties, based on a specified return type parameter.
📄️ deep-copy
Function that creates a complete copy of anything.
📄️ map-object-keys
Function accepts an object and a transformation function, applies the transformation function to each key in the object, and returns a new object with the modified keys.
📄️ merge-objects
Deeply merges two plain objects
📄️ chunk-array
Function that splits an array into smaller arrays ("chunks") of a specified size.
📄️ resolve-value
Function that retrieves or resolves only values. This function should handle various input types, resolving functions if encountered, and ultimately return an value if possible.
📄️ resolve-function
Function that retrieves or resolves only function values. This function should handle various input types, resolving functions if encountered, and ultimately return an function if possible.
📄️ resolve-array
Function that retrieves or resolves only array values. This function should handle various input types, resolving functions if encountered, and ultimately return an array if possible.
📄️ resolve-boolean
Function that retrieves or resolves only boolean values. This function should handle various input types, resolving functions if encountered, and ultimately return an boolean if possible.
📄️ resolve-date
Function that retrieves or resolves only date values. This function should handle various input types, resolving functions if encountered, and ultimately return an date if possible.
📄️ resolve-map
Function that retrieves or resolves only Map values. This function should handle various input types, resolving functions if encountered, and ultimately return an Map if possible.
📄️ resolve-number
Function that retrieves or resolves only number values. This function should handle various input types, resolving functions if encountered, and ultimately return an number if possible.
📄️ resolve-object
Function that retrieves or resolves only object values. This function should handle various input types, resolving functions if encountered, and ultimately return an object if possible.
📄 ️ resolve-set
Function that retrieves or resolves only Set values. This function should handle various input types, resolving functions if encountered, and ultimately return an Set if possible.
📄️ resolve-string
Function that retrieves or resolves only string values. This function should handle various input types, resolving functions if encountered, and ultimately return an string if possible.