scheduler-node-models 1.0.39 → 1.0.40

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.39",
3
+ "version": "1.0.40",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "files": [
@@ -805,8 +805,6 @@ class Employee {
805
805
  */
806
806
  getWorkedHours(start, end, chgno, ext) {
807
807
  let answer = 0.0;
808
- console.log(`Dates: ${start} - ${end}`);
809
- console.log(`Work: ${this.name.lastname} - ${this.work?.length}`);
810
808
  if (this.work) {
811
809
  this.work.forEach(wk => {
812
810
  if (wk.dateWorked.getTime() >= start.getTime()