scope360-core 0.0.235 → 0.0.237
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/dist/scope360-core.js
CHANGED
|
@@ -30120,7 +30120,7 @@ function T5(t, e) {
|
|
|
30120
30120
|
const n = +new Date(e) - +new Date(t), s = Math.floor(n / (1e3 * 60 * 60 * 24)), i = Math.floor(
|
|
30121
30121
|
n % (1e3 * 60 * 60 * 24) / (1e3 * 60 * 60)
|
|
30122
30122
|
), r = Math.floor(n % (1e3 * 60 * 60) / (1e3 * 60)), a = Math.floor(n % (1e3 * 60) / 1e3), o = [];
|
|
30123
|
-
return s > 0 && o.push(`${s}
|
|
30123
|
+
return s > 0 && o.push(`${s}D`), i > 0 && o.push(`${i}H`), r > 0 && o.push(`${r}M`), a > 0 && o.push(`${a}S`), o.join(" ");
|
|
30124
30124
|
}
|
|
30125
30125
|
function D5(t, e) {
|
|
30126
30126
|
const n = +new Date(e) - +new Date(t), s = Math.floor(n / (1e3 * 60 * 60 * 24));
|