We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c716ef3 commit 8549b1cCopy full SHA for 8549b1c
src/mark.js
@@ -233,8 +233,7 @@ export function maybeTransform({
233
if (s1 != null) t1 = compose(t1, sort(s1));
234
if (r1) t1 = compose(t1, reverse);
235
}
236
- const transform = compose(t1, t2);
237
- return transform === undefined ? options : {...options, transform};
+ return {...options, transform: compose(t1, t2)};
238
239
240
// Assuming that both x1 and x2 and lazy channels (per above), this derives a
0 commit comments