UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

10 lines (9 loc) 287 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var last_1 = require("./last"); test('should return last', function () { expect(last_1.last([1, 2, 3])).toEqual(3); }); test('empty array', function () { expect(last_1.last([])).toEqual(undefined); });