testilo 13.10.3 → 13.10.4
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/merge.js +1 -1
- package/package.json +1 -1
- package/procs/score/tic30.js +1 -1
package/merge.js
CHANGED
|
@@ -38,7 +38,7 @@ exports.merge = (script, batch, requester, isolate = false) => {
|
|
|
38
38
|
// If the requester is unspecified, make it the standard requester.
|
|
39
39
|
requester ||= stdRequester;
|
|
40
40
|
// Create a timestamp.
|
|
41
|
-
const timeStamp = Math.floor((Date.now() - Date.UTC(2023,
|
|
41
|
+
const timeStamp = Math.floor((Date.now() - Date.UTC(2023, 6)) / 2000).toString(36);
|
|
42
42
|
// Create a time description.
|
|
43
43
|
const creationTime = (new Date()).toISOString().slice(0, 19);
|
|
44
44
|
// Initialize a target-independent job.
|
package/package.json
CHANGED