Skip to content

Commit 53d995a

Browse files
committed
single-src: remove assertion for production === calculatedProduction
1 parent e873ca2 commit 53d995a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/single-source/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
import assert from 'node:assert';
2-
31
export class ProductionPlan {
42
constructor() {
53
this._adjustments = [];
64
this._production = 0;
75
}
86

97
get production() {
10-
assert(this._production === this.calculatedProduction);
118
return this.calculatedProduction;
129
}
1310

0 commit comments

Comments
 (0)