it("returns the first sequence if called with an empty argument", () => {
        expect(from([1, 2]).except([]).toArray()).toEqual([1, 2]);
    });