diff --git a/projects/scion/toolkit/operators/src/operators.ts b/projects/scion/toolkit/operators/src/operators.ts index 94dc0603..04784e3e 100644 --- a/projects/scion/toolkit/operators/src/operators.ts +++ b/projects/scion/toolkit/operators/src/operators.ts @@ -67,17 +67,6 @@ export function filterArray(predicate?: (item: T) => Observable | Pr }); } -/** - * Maps each element in the source array to its extracted property. - * - * Like rxjs 'pluck' but based on an array with a function to extract the property. - * - * @deprecated since version 10.0.0-beta.3. Use {@link mapArray} instead. - */ -export function pluckArray(extractor: (item: I) => P): OperatorFunction { - return map((items: I[] | readonly I[]): P[] => items.map(item => extractor(item))); -} - /** * Maps each element in the source array to its mapped value. */