Skip to content

Commit

Permalink
feat(operator): removed deprecated pluck operator
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The `pluck('foo', 'bar')` operator is no longer available. Use `map(x => x?.foo?.bar)`.
  • Loading branch information
demensky committed Jan 24, 2023
1 parent e0b2356 commit 77fb8ff
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 453 deletions.
71 changes: 0 additions & 71 deletions spec-dtslint/operators/pluck-spec.ts

This file was deleted.

1 change: 0 additions & 1 deletion spec/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ describe('index', () => {
expect(index.min).to.exist;
expect(index.observeOn).to.exist;
expect(index.pairwise).to.exist;
expect(index.pluck).to.exist;
expect(index.raceWith).to.exist;
expect(index.reduce).to.exist;
expect(index.repeat).to.exist;
Expand Down
1 change: 0 additions & 1 deletion spec/operators/index-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ describe('operators/index', () => {
expect(index.observeOn).to.exist;
expect(index.pairwise).to.exist;
expect(index.partition).to.exist;
expect(index.pluck).to.exist;
expect(index.reduce).to.exist;
expect(index.repeat).to.exist;
expect(index.repeatWhen).to.exist;
Expand Down
272 changes: 0 additions & 272 deletions spec/operators/pluck-spec.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ export { min } from './internal/operators/min';
export { observeOn } from './internal/operators/observeOn';
export { onErrorResumeNextWith } from './internal/operators/onErrorResumeNextWith';
export { pairwise } from './internal/operators/pairwise';
export { pluck } from './internal/operators/pluck';
export { raceWith } from './internal/operators/raceWith';
export { reduce } from './internal/operators/reduce';
export { repeat, RepeatConfig } from './internal/operators/repeat';
Expand Down

0 comments on commit 77fb8ff

Please sign in to comment.