scheduler-node-models 1.1.24 → 1.1.25
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
|
@@ -56,7 +56,7 @@ class CofSReport {
|
|
|
56
56
|
const now = new Date();
|
|
57
57
|
const filename = `${this.shortname}-${now.getFullYear()}`
|
|
58
58
|
+ `${(now.getMonth() + 1).toString().padStart(2, '0')}`
|
|
59
|
-
+ `${now.getDate().toString().padStart(2, '0')}`;
|
|
59
|
+
+ `${now.getDate().toString().padStart(2, '0')}.xml`;
|
|
60
60
|
let content = '';
|
|
61
61
|
const remarks = [];
|
|
62
62
|
// Create the xml formated output and attach to content string.
|