it("returns the original sequence if the input is non-empty and no default is specified", () => {
        expect(from([1, 2]).defaultIfEmpty().toArray()).toEqual([1, 2]);
    });