Skip to content

Commit 20129d6

Browse files
committed
multiple-srcs: remove assertion for calculatedProduction
1 parent 8c5d077 commit 20129d6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/multiple-sources/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import assert from 'node:assert';
2-
31
export class ProductionPlan {
42
constructor(production) {
53
this._initialProduction = production;
@@ -8,7 +6,6 @@ export class ProductionPlan {
86
}
97

108
get production() {
11-
assert(this._productionAccumulator === this.calculatedProduction);
129
return this._initialProduction + this.calculatedProduction;
1310
}
1411

0 commit comments

Comments
 (0)