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

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