@barchart/portfolio-api-common 1.0.240 → 1.0.241

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,7 +37,7 @@ module.exports = (() => {
37
37
  this._income = income;
38
38
  this._opening = opening;
39
39
  this._closing = closing;
40
- this._fee = fee
40
+ this._fee = fee;
41
41
  }
42
42
 
43
43
  /**
@@ -47,7 +47,6 @@ module.exports = (() => {
47
47
 
48
48
  return transactions.reduce((list, transaction) => {
49
49
  const position = transaction.position;
50
- const position = transaction.position;
51
50
 
52
51
  if (instruments.hasOwnProperty(position)) {
53
52
  let instrument = instruments[position];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/portfolio-api-common",
3
- "version": "1.0.240",
3
+ "version": "1.0.241",
4
4
  "description": "Common classes used by the Portfolio system",
5
5
  "author": {
6
6
  "name": "Bryan Ingle",
@@ -482,7 +482,7 @@ module.exports = (() => {
482
482
  this._income = income;
483
483
  this._opening = opening;
484
484
  this._closing = closing;
485
- this._fee = fee
485
+ this._fee = fee;
486
486
  }
487
487
 
488
488
  /**