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

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