UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

8 lines (7 loc) 195 B
import { last } from './last'; test('should return last', function () { expect(last([1, 2, 3])).toEqual(3); }); test('empty array', function () { expect(last([])).toEqual(undefined); });