it("uses the `transform` function", () => {
        expect(
            from(["aa", "a", "aaa"]).max(s => s.length)
        ).toBe(3);
    });