rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
18 lines (17 loc) • 363 B
text/typescript
/**
* @public
* Gets the last value in `ArrayLike`.
*
* @returns The first value in `map`, otherwise `undefined` where size 0.
*
* @remarks
* See {@link mapFirstValue}.
*/
export function arrayLast<TItem>(items: ArrayLike<TItem>): TItem | undefined
{
if (items.length === 0)
{
return undefined;
}
return items[items.length - 1];
}