Object functions
Functions for working with objects
These functions perform standard object operations, like fetching the keys and values, as well as merging objects.
| Function | Description |
|---|---|
get_property | Get the value of a property. |
items | Convert an object into an array of its properties. |
keys | Get an array of the keys of an object. |
merge | Merge objects. |
remove_property | Remove properties from an object. |
replace_properties | Merge objects, preserve null. |
numbered_props_to_array | Separate an object with numbered properties into an array of objects. |
values | Get an array of the values of an object. |
Updated 11 days ago