File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2222 *
2323 * ## See also
2424 *
25- * - {@link module:iterutil/ async/chain.chain} for the asynchronous version.
25+ * - {@link async/chain.chain} for the asynchronous version.
2626 */
2727export function * chain < T extends Iterable < unknown > [ ] > (
2828 ...iterables : T
Original file line number Diff line number Diff line change 11/**
2- * Removes all nullish ({ @linkcode null} or { @linkcode undefined} ) values from an iterable.
2+ * Removes all nullish (` null` or ` undefined` ) values from an iterable.
33 *
44 * @param iterable - The iterable to compact.
55 * @returns The compacted iterable.
1313 * ```
1414 *
1515 * ## See also
16- * - {@link module:iterutil/async/compact.compact} for the asynchronous version.
17- * - {@link module:iterutil /compress.compress} to select elements based on a selector iterable.
18- * - {@link module:iterutil/ filter.filter} to remove values based on a predicate.
16+ * - {@link module:@core/ iterutil/async/compact.compact} for the asynchronous version.
17+ * - {@link module:/compress.compress} to select elements based on a selector iterable.
18+ * - {@link module:filter.filter} to remove values based on a predicate.
1919 */
2020export function * compact < T > ( iterable : Iterable < T > ) : Iterable < NonNullable < T > > {
2121 for ( const value of iterable ) {
You can’t perform that action at this time.
0 commit comments