scheduler-node-models 1.0.63 → 1.0.64

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