Returns the last element of a list inside of a structure addressed by
path
path (String/Array) - Path to the list
subject (Object) - The object that contains the requested value
TYPE SIGNATURES
String -> Object -> *
(String, Object) -> *
Array -> Object -> *
(Array, Object) -> *
EXAMPLE
const myObject = {
rooms: {
kitchen: {
refrigerator: [
'eggs',
'beer',
'milk'
]
}
}
};
$last('rooms.kitchen.refrigerator', myObject); // returns 'milk'
IMMUTABLE JS SUPPORT (DEPRECATED)
WARNING: Immutable JS support is deprecated. It will be removed entirely with the next major version of Plow JS (which will be 4.0.0). Until then, support for Immutable JS versions below (but not including) v4 - though discouraged - continues to work.
the following types are supported for values targeted by path
:
Iterable.Indexed
Iterable.Keyed
Iterable.Set