dayjs_plugin_duration.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. import {
  2. __commonJS
  3. } from "./chunk-UQGIA5KH.js";
  4. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/dayjs/plugin/duration.js
  5. var require_duration = __commonJS({
  6. "../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/dayjs/plugin/duration.js"(exports, module) {
  7. !function(t, s) {
  8. "object" == typeof exports && "undefined" != typeof module ? module.exports = s() : "function" == typeof define && define.amd ? define(s) : (t = "undefined" != typeof globalThis ? globalThis : t || self).dayjs_plugin_duration = s();
  9. }(exports, function() {
  10. "use strict";
  11. var t, s, n = 1e3, i = 6e4, e = 36e5, r = 864e5, o = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, u = 31536e6, d = 2628e6, a = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/, h = { years: u, months: d, days: r, hours: e, minutes: i, seconds: n, milliseconds: 1, weeks: 6048e5 }, c = function(t2) {
  12. return t2 instanceof g;
  13. }, f = function(t2, s2, n2) {
  14. return new g(t2, n2, s2.$l);
  15. }, m = function(t2) {
  16. return s.p(t2) + "s";
  17. }, l = function(t2) {
  18. return t2 < 0;
  19. }, $ = function(t2) {
  20. return l(t2) ? Math.ceil(t2) : Math.floor(t2);
  21. }, y = function(t2) {
  22. return Math.abs(t2);
  23. }, v = function(t2, s2) {
  24. return t2 ? l(t2) ? { negative: true, format: "" + y(t2) + s2 } : { negative: false, format: "" + t2 + s2 } : { negative: false, format: "" };
  25. }, g = function() {
  26. function l2(t2, s2, n2) {
  27. var i2 = this;
  28. if (this.$d = {}, this.$l = n2, void 0 === t2 && (this.$ms = 0, this.parseFromMilliseconds()), s2)
  29. return f(t2 * h[m(s2)], this);
  30. if ("number" == typeof t2)
  31. return this.$ms = t2, this.parseFromMilliseconds(), this;
  32. if ("object" == typeof t2)
  33. return Object.keys(t2).forEach(function(s3) {
  34. i2.$d[m(s3)] = t2[s3];
  35. }), this.calMilliseconds(), this;
  36. if ("string" == typeof t2) {
  37. var e2 = t2.match(a);
  38. if (e2) {
  39. var r2 = e2.slice(2).map(function(t3) {
  40. return null != t3 ? Number(t3) : 0;
  41. });
  42. return this.$d.years = r2[0], this.$d.months = r2[1], this.$d.weeks = r2[2], this.$d.days = r2[3], this.$d.hours = r2[4], this.$d.minutes = r2[5], this.$d.seconds = r2[6], this.calMilliseconds(), this;
  43. }
  44. }
  45. return this;
  46. }
  47. var y2 = l2.prototype;
  48. return y2.calMilliseconds = function() {
  49. var t2 = this;
  50. this.$ms = Object.keys(this.$d).reduce(function(s2, n2) {
  51. return s2 + (t2.$d[n2] || 0) * h[n2];
  52. }, 0);
  53. }, y2.parseFromMilliseconds = function() {
  54. var t2 = this.$ms;
  55. this.$d.years = $(t2 / u), t2 %= u, this.$d.months = $(t2 / d), t2 %= d, this.$d.days = $(t2 / r), t2 %= r, this.$d.hours = $(t2 / e), t2 %= e, this.$d.minutes = $(t2 / i), t2 %= i, this.$d.seconds = $(t2 / n), t2 %= n, this.$d.milliseconds = t2;
  56. }, y2.toISOString = function() {
  57. var t2 = v(this.$d.years, "Y"), s2 = v(this.$d.months, "M"), n2 = +this.$d.days || 0;
  58. this.$d.weeks && (n2 += 7 * this.$d.weeks);
  59. var i2 = v(n2, "D"), e2 = v(this.$d.hours, "H"), r2 = v(this.$d.minutes, "M"), o2 = this.$d.seconds || 0;
  60. this.$d.milliseconds && (o2 += this.$d.milliseconds / 1e3, o2 = Math.round(1e3 * o2) / 1e3);
  61. var u2 = v(o2, "S"), d2 = t2.negative || s2.negative || i2.negative || e2.negative || r2.negative || u2.negative, a2 = e2.format || r2.format || u2.format ? "T" : "", h2 = (d2 ? "-" : "") + "P" + t2.format + s2.format + i2.format + a2 + e2.format + r2.format + u2.format;
  62. return "P" === h2 || "-P" === h2 ? "P0D" : h2;
  63. }, y2.toJSON = function() {
  64. return this.toISOString();
  65. }, y2.format = function(t2) {
  66. var n2 = t2 || "YYYY-MM-DDTHH:mm:ss", i2 = { Y: this.$d.years, YY: s.s(this.$d.years, 2, "0"), YYYY: s.s(this.$d.years, 4, "0"), M: this.$d.months, MM: s.s(this.$d.months, 2, "0"), D: this.$d.days, DD: s.s(this.$d.days, 2, "0"), H: this.$d.hours, HH: s.s(this.$d.hours, 2, "0"), m: this.$d.minutes, mm: s.s(this.$d.minutes, 2, "0"), s: this.$d.seconds, ss: s.s(this.$d.seconds, 2, "0"), SSS: s.s(this.$d.milliseconds, 3, "0") };
  67. return n2.replace(o, function(t3, s2) {
  68. return s2 || String(i2[t3]);
  69. });
  70. }, y2.as = function(t2) {
  71. return this.$ms / h[m(t2)];
  72. }, y2.get = function(t2) {
  73. var s2 = this.$ms, n2 = m(t2);
  74. return "milliseconds" === n2 ? s2 %= 1e3 : s2 = "weeks" === n2 ? $(s2 / h[n2]) : this.$d[n2], s2 || 0;
  75. }, y2.add = function(t2, s2, n2) {
  76. var i2;
  77. return i2 = s2 ? t2 * h[m(s2)] : c(t2) ? t2.$ms : f(t2, this).$ms, f(this.$ms + i2 * (n2 ? -1 : 1), this);
  78. }, y2.subtract = function(t2, s2) {
  79. return this.add(t2, s2, true);
  80. }, y2.locale = function(t2) {
  81. var s2 = this.clone();
  82. return s2.$l = t2, s2;
  83. }, y2.clone = function() {
  84. return f(this.$ms, this);
  85. }, y2.humanize = function(s2) {
  86. return t().add(this.$ms, "ms").locale(this.$l).fromNow(!s2);
  87. }, y2.valueOf = function() {
  88. return this.asMilliseconds();
  89. }, y2.milliseconds = function() {
  90. return this.get("milliseconds");
  91. }, y2.asMilliseconds = function() {
  92. return this.as("milliseconds");
  93. }, y2.seconds = function() {
  94. return this.get("seconds");
  95. }, y2.asSeconds = function() {
  96. return this.as("seconds");
  97. }, y2.minutes = function() {
  98. return this.get("minutes");
  99. }, y2.asMinutes = function() {
  100. return this.as("minutes");
  101. }, y2.hours = function() {
  102. return this.get("hours");
  103. }, y2.asHours = function() {
  104. return this.as("hours");
  105. }, y2.days = function() {
  106. return this.get("days");
  107. }, y2.asDays = function() {
  108. return this.as("days");
  109. }, y2.weeks = function() {
  110. return this.get("weeks");
  111. }, y2.asWeeks = function() {
  112. return this.as("weeks");
  113. }, y2.months = function() {
  114. return this.get("months");
  115. }, y2.asMonths = function() {
  116. return this.as("months");
  117. }, y2.years = function() {
  118. return this.get("years");
  119. }, y2.asYears = function() {
  120. return this.as("years");
  121. }, l2;
  122. }(), p = function(t2, s2, n2) {
  123. return t2.add(s2.years() * n2, "y").add(s2.months() * n2, "M").add(s2.days() * n2, "d").add(s2.hours() * n2, "h").add(s2.minutes() * n2, "m").add(s2.seconds() * n2, "s").add(s2.milliseconds() * n2, "ms");
  124. };
  125. return function(n2, i2, e2) {
  126. t = e2, s = e2().$utils(), e2.duration = function(t2, s2) {
  127. var n3 = e2.locale();
  128. return f(t2, { $l: n3 }, s2);
  129. }, e2.isDuration = c;
  130. var r2 = i2.prototype.add, o2 = i2.prototype.subtract;
  131. i2.prototype.add = function(t2, s2) {
  132. return c(t2) ? p(this, t2, 1) : r2.bind(this)(t2, s2);
  133. }, i2.prototype.subtract = function(t2, s2) {
  134. return c(t2) ? p(this, t2, -1) : o2.bind(this)(t2, s2);
  135. };
  136. };
  137. });
  138. }
  139. });
  140. export default require_duration();
  141. //# sourceMappingURL=dayjs_plugin_duration.js.map