scheduler-node-models 1.2.81 → 1.2.83

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scheduler-node-models",
3
- "version": "1.2.81",
3
+ "version": "1.2.83",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "files": [
@@ -75,6 +75,7 @@ class ExcelRowIngest {
75
75
  throw new Error('No worksheet');
76
76
  }
77
77
  result.sort((a, b) => a.compareTo(b));
78
+ console.log(`result: ${result.length}`);
78
79
  return result;
79
80
  }
80
81
  /**
@@ -132,7 +133,6 @@ class ExcelRowIngest {
132
133
  eRow.extension = laborcode.extension;
133
134
  eRow.premium = '1';
134
135
  eRow.hours = Number(sValue);
135
- console.log(JSON.stringify(eRow));
136
136
  result.push(eRow);
137
137
  }
138
138
  }