it("Gets the last and unique item that fills in the condition", () => {
    const value = last([1, 2, 3], t => t % 2 === 0);

    expect(value).toEqual(2);
  });