scheduler-node-models 1.0.68 → 1.0.70

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.0.68",
3
+ "version": "1.0.70",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -810,9 +810,6 @@ class Employee {
810
810
  let answer = 0.0;
811
811
  if (this.work) {
812
812
  this.work.forEach(wk => {
813
- if (this.name.lastname.toLowerCase() === 'erne') {
814
- console.log(`${wk.dateWorked} - ${wk.chargeNumber} - ${wk.extension}`);
815
- }
816
813
  if (wk.dateWorked.getTime() >= start.getTime()
817
814
  && wk.dateWorked.getTime() <= end.getTime()
818
815
  && !wk.modtime) {