Skip to main content
Module

x/rambda/last.spec.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { last } from './last'
test('with list', () => { expect(last([ 1, 2, 3 ])).toBe(3) expect(last([])).toBeUndefined()})
test('with string', () => { expect(last('abc')).toEqual('c') expect(last('')).toEqual('')})