2.0.0 • Published 4 years ago
last-item v2.0.0
last-item
Get the last item in an array or other iterable.
Install
npm install last-itemUsage
import lastItem from 'last-item';
lastItem([1, 2, 3]);
//=> 3API
lastItem(iterable)
iterable
Type: iterable
The array or other iterable to get the last item for.