yansu 0.0.0-beta.1

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.
Files changed (142) hide show
  1. package/README.md +1 -0
  2. package/bin.mjs +18 -0
  3. package/dist/cli.d.mts +2 -0
  4. package/dist/cli.mjs +68 -0
  5. package/dist/dirs.d.mts +4 -0
  6. package/dist/dirs.mjs +6 -0
  7. package/dist/index.d.mts +78 -0
  8. package/dist/index.mjs +121 -0
  9. package/dist/nitro.json +15 -0
  10. package/dist/public/_nuxt/BHIHUtPz.js +4 -0
  11. package/dist/public/_nuxt/CCgOhniq.js +1 -0
  12. package/dist/public/_nuxt/CR6vfq1R.js +1 -0
  13. package/dist/public/_nuxt/DmxzK6E8.js +1 -0
  14. package/dist/public/_nuxt/builds/latest.json +1 -0
  15. package/dist/public/_nuxt/builds/meta/e9079134-f314-434b-b3a7-092c4a1e187d.json +1 -0
  16. package/dist/public/_nuxt/entry.DJ3VOi_0.css +1 -0
  17. package/dist/public/_nuxt/error-404.lC6KBLNm.css +1 -0
  18. package/dist/public/_nuxt/error-500.NtBcR2wE.css +1 -0
  19. package/dist/server/chunks/_/error-500.mjs +9 -0
  20. package/dist/server/chunks/build/_plugin-vue_export-helper-DjsbPc54.mjs +29 -0
  21. package/dist/server/chunks/build/client.precomputed.mjs +3 -0
  22. package/dist/server/chunks/build/error-404-Du0ot2hm.mjs +369 -0
  23. package/dist/server/chunks/build/error-500-Y3RUV6n2.mjs +73 -0
  24. package/dist/server/chunks/build/server.mjs +727 -0
  25. package/dist/server/chunks/nitro/nitro.mjs +5176 -0
  26. package/dist/server/chunks/routes/api/metadata.json.mjs +147 -0
  27. package/dist/server/chunks/routes/api/platform.json.mjs +20 -0
  28. package/dist/server/chunks/routes/renderer.mjs +408 -0
  29. package/dist/server/chunks/virtual/_virtual_spa-template.mjs +3 -0
  30. package/dist/server/index.mjs +9 -0
  31. package/dist/server/node_modules/.nitro/@vue/shared@3.5.25/dist/shared.cjs.prod.js +604 -0
  32. package/dist/server/node_modules/.nitro/@vue/shared@3.5.25/package.json +47 -0
  33. package/dist/server/node_modules/.nitro/@vue/shared@3.5.26/dist/shared.cjs.prod.js +604 -0
  34. package/dist/server/node_modules/.nitro/@vue/shared@3.5.26/package.json +47 -0
  35. package/dist/server/node_modules/@babel/parser/lib/index.js +14662 -0
  36. package/dist/server/node_modules/@babel/parser/package.json +50 -0
  37. package/dist/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6763 -0
  38. package/dist/server/node_modules/@vue/compiler-core/package.json +58 -0
  39. package/dist/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +689 -0
  40. package/dist/server/node_modules/@vue/compiler-dom/package.json +57 -0
  41. package/dist/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1413 -0
  42. package/dist/server/node_modules/@vue/compiler-ssr/package.json +34 -0
  43. package/dist/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1853 -0
  44. package/dist/server/node_modules/@vue/reactivity/package.json +55 -0
  45. package/dist/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6770 -0
  46. package/dist/server/node_modules/@vue/runtime-core/package.json +52 -0
  47. package/dist/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1732 -0
  48. package/dist/server/node_modules/@vue/runtime-dom/package.json +60 -0
  49. package/dist/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +879 -0
  50. package/dist/server/node_modules/@vue/server-renderer/package.json +55 -0
  51. package/dist/server/node_modules/ansis/index.cjs +1 -0
  52. package/dist/server/node_modules/ansis/index.mjs +1 -0
  53. package/dist/server/node_modules/ansis/package.json +25 -0
  54. package/dist/server/node_modules/birpc/dist/index.mjs +173 -0
  55. package/dist/server/node_modules/birpc/package.json +56 -0
  56. package/dist/server/node_modules/consola/dist/chunks/prompt.mjs +280 -0
  57. package/dist/server/node_modules/consola/dist/core.mjs +512 -0
  58. package/dist/server/node_modules/consola/dist/index.mjs +651 -0
  59. package/dist/server/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs +72 -0
  60. package/dist/server/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs +288 -0
  61. package/dist/server/node_modules/consola/package.json +136 -0
  62. package/dist/server/node_modules/devalue/index.js +4 -0
  63. package/dist/server/node_modules/devalue/package.json +37 -0
  64. package/dist/server/node_modules/devalue/src/base64.js +110 -0
  65. package/dist/server/node_modules/devalue/src/constants.js +6 -0
  66. package/dist/server/node_modules/devalue/src/parse.js +205 -0
  67. package/dist/server/node_modules/devalue/src/stringify.js +265 -0
  68. package/dist/server/node_modules/devalue/src/uneval.js +407 -0
  69. package/dist/server/node_modules/devalue/src/utils.js +118 -0
  70. package/dist/server/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  71. package/dist/server/node_modules/entities/dist/commonjs/decode.js +568 -0
  72. package/dist/server/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
  73. package/dist/server/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
  74. package/dist/server/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
  75. package/dist/server/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
  76. package/dist/server/node_modules/entities/dist/commonjs/package.json +3 -0
  77. package/dist/server/node_modules/entities/package.json +113 -0
  78. package/dist/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
  79. package/dist/server/node_modules/estree-walker/package.json +37 -0
  80. package/dist/server/node_modules/get-port-please/dist/index.mjs +430 -0
  81. package/dist/server/node_modules/get-port-please/package.json +39 -0
  82. package/dist/server/node_modules/hookable/dist/index.mjs +290 -0
  83. package/dist/server/node_modules/hookable/package.json +49 -0
  84. package/dist/server/node_modules/source-map-js/lib/array-set.js +121 -0
  85. package/dist/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
  86. package/dist/server/node_modules/source-map-js/lib/base64.js +67 -0
  87. package/dist/server/node_modules/source-map-js/lib/binary-search.js +111 -0
  88. package/dist/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
  89. package/dist/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
  90. package/dist/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
  91. package/dist/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
  92. package/dist/server/node_modules/source-map-js/lib/source-node.js +413 -0
  93. package/dist/server/node_modules/source-map-js/lib/util.js +594 -0
  94. package/dist/server/node_modules/source-map-js/package.json +71 -0
  95. package/dist/server/node_modules/source-map-js/source-map.js +8 -0
  96. package/dist/server/node_modules/structured-clone-es/dist/index.mjs +285 -0
  97. package/dist/server/node_modules/structured-clone-es/package.json +56 -0
  98. package/dist/server/node_modules/ufo/dist/index.mjs +638 -0
  99. package/dist/server/node_modules/ufo/package.json +47 -0
  100. package/dist/server/node_modules/unhead/dist/index.mjs +9 -0
  101. package/dist/server/node_modules/unhead/dist/parser.mjs +508 -0
  102. package/dist/server/node_modules/unhead/dist/plugins.mjs +101 -0
  103. package/dist/server/node_modules/unhead/dist/scripts.mjs +30 -0
  104. package/dist/server/node_modules/unhead/dist/server.mjs +182 -0
  105. package/dist/server/node_modules/unhead/dist/shared/unhead.B578PsDV.mjs +266 -0
  106. package/dist/server/node_modules/unhead/dist/shared/unhead.BPM0-cfG.mjs +44 -0
  107. package/dist/server/node_modules/unhead/dist/shared/unhead.BYvz9V1x.mjs +43 -0
  108. package/dist/server/node_modules/unhead/dist/shared/unhead.BpRRHAhY.mjs +194 -0
  109. package/dist/server/node_modules/unhead/dist/shared/unhead.CApf5sj3.mjs +148 -0
  110. package/dist/server/node_modules/unhead/dist/shared/unhead.DH45uomy.mjs +180 -0
  111. package/dist/server/node_modules/unhead/dist/shared/unhead.DQc16pHI.mjs +196 -0
  112. package/dist/server/node_modules/unhead/dist/shared/unhead.DZbvapt-.mjs +70 -0
  113. package/dist/server/node_modules/unhead/dist/shared/unhead.Djo8ep_Y.mjs +166 -0
  114. package/dist/server/node_modules/unhead/dist/shared/unhead.yem5I2v_.mjs +38 -0
  115. package/dist/server/node_modules/unhead/dist/utils.mjs +5 -0
  116. package/dist/server/node_modules/unhead/package.json +105 -0
  117. package/dist/server/node_modules/vue/dist/vue.cjs.js +80 -0
  118. package/dist/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
  119. package/dist/server/node_modules/vue/index.js +7 -0
  120. package/dist/server/node_modules/vue/index.mjs +1 -0
  121. package/dist/server/node_modules/vue/package.json +112 -0
  122. package/dist/server/node_modules/vue/server-renderer/index.mjs +1 -0
  123. package/dist/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +301 -0
  124. package/dist/server/node_modules/vue-bundle-renderer/package.json +55 -0
  125. package/dist/server/node_modules/ws/lib/buffer-util.js +131 -0
  126. package/dist/server/node_modules/ws/lib/constants.js +19 -0
  127. package/dist/server/node_modules/ws/lib/event-target.js +292 -0
  128. package/dist/server/node_modules/ws/lib/extension.js +203 -0
  129. package/dist/server/node_modules/ws/lib/limiter.js +55 -0
  130. package/dist/server/node_modules/ws/lib/permessage-deflate.js +528 -0
  131. package/dist/server/node_modules/ws/lib/receiver.js +706 -0
  132. package/dist/server/node_modules/ws/lib/sender.js +602 -0
  133. package/dist/server/node_modules/ws/lib/stream.js +161 -0
  134. package/dist/server/node_modules/ws/lib/subprotocol.js +62 -0
  135. package/dist/server/node_modules/ws/lib/validation.js +152 -0
  136. package/dist/server/node_modules/ws/lib/websocket-server.js +554 -0
  137. package/dist/server/node_modules/ws/lib/websocket.js +1393 -0
  138. package/dist/server/node_modules/ws/package.json +69 -0
  139. package/dist/server/node_modules/ws/wrapper.mjs +8 -0
  140. package/dist/server/package.json +32 -0
  141. package/dist/shared/yansu.DmdNF4qf.mjs +151 -0
  142. package/package.json +50 -0
@@ -0,0 +1,512 @@
1
+ const LogLevels = {
2
+ silent: Number.NEGATIVE_INFINITY,
3
+ fatal: 0,
4
+ error: 0,
5
+ warn: 1,
6
+ log: 2,
7
+ info: 3,
8
+ success: 3,
9
+ fail: 3,
10
+ ready: 3,
11
+ start: 3,
12
+ box: 3,
13
+ debug: 4,
14
+ trace: 5,
15
+ verbose: Number.POSITIVE_INFINITY
16
+ };
17
+ const LogTypes = {
18
+ // Silent
19
+ silent: {
20
+ level: -1
21
+ },
22
+ // Level 0
23
+ fatal: {
24
+ level: LogLevels.fatal
25
+ },
26
+ error: {
27
+ level: LogLevels.error
28
+ },
29
+ // Level 1
30
+ warn: {
31
+ level: LogLevels.warn
32
+ },
33
+ // Level 2
34
+ log: {
35
+ level: LogLevels.log
36
+ },
37
+ // Level 3
38
+ info: {
39
+ level: LogLevels.info
40
+ },
41
+ success: {
42
+ level: LogLevels.success
43
+ },
44
+ fail: {
45
+ level: LogLevels.fail
46
+ },
47
+ ready: {
48
+ level: LogLevels.info
49
+ },
50
+ start: {
51
+ level: LogLevels.info
52
+ },
53
+ box: {
54
+ level: LogLevels.info
55
+ },
56
+ // Level 4
57
+ debug: {
58
+ level: LogLevels.debug
59
+ },
60
+ // Level 5
61
+ trace: {
62
+ level: LogLevels.trace
63
+ },
64
+ // Verbose
65
+ verbose: {
66
+ level: LogLevels.verbose
67
+ }
68
+ };
69
+
70
+ function isPlainObject$1(value) {
71
+ if (value === null || typeof value !== "object") {
72
+ return false;
73
+ }
74
+ const prototype = Object.getPrototypeOf(value);
75
+ if (prototype !== null && prototype !== Object.prototype && Object.getPrototypeOf(prototype) !== null) {
76
+ return false;
77
+ }
78
+ if (Symbol.iterator in value) {
79
+ return false;
80
+ }
81
+ if (Symbol.toStringTag in value) {
82
+ return Object.prototype.toString.call(value) === "[object Module]";
83
+ }
84
+ return true;
85
+ }
86
+
87
+ function _defu(baseObject, defaults, namespace = ".", merger) {
88
+ if (!isPlainObject$1(defaults)) {
89
+ return _defu(baseObject, {}, namespace, merger);
90
+ }
91
+ const object = Object.assign({}, defaults);
92
+ for (const key in baseObject) {
93
+ if (key === "__proto__" || key === "constructor") {
94
+ continue;
95
+ }
96
+ const value = baseObject[key];
97
+ if (value === null || value === void 0) {
98
+ continue;
99
+ }
100
+ if (merger && merger(object, key, value, namespace)) {
101
+ continue;
102
+ }
103
+ if (Array.isArray(value) && Array.isArray(object[key])) {
104
+ object[key] = [...value, ...object[key]];
105
+ } else if (isPlainObject$1(value) && isPlainObject$1(object[key])) {
106
+ object[key] = _defu(
107
+ value,
108
+ object[key],
109
+ (namespace ? `${namespace}.` : "") + key.toString(),
110
+ merger
111
+ );
112
+ } else {
113
+ object[key] = value;
114
+ }
115
+ }
116
+ return object;
117
+ }
118
+ function createDefu(merger) {
119
+ return (...arguments_) => (
120
+ // eslint-disable-next-line unicorn/no-array-reduce
121
+ arguments_.reduce((p, c) => _defu(p, c, "", merger), {})
122
+ );
123
+ }
124
+ const defu = createDefu();
125
+
126
+ function isPlainObject(obj) {
127
+ return Object.prototype.toString.call(obj) === "[object Object]";
128
+ }
129
+ function isLogObj(arg) {
130
+ if (!isPlainObject(arg)) {
131
+ return false;
132
+ }
133
+ if (!arg.message && !arg.args) {
134
+ return false;
135
+ }
136
+ if (arg.stack) {
137
+ return false;
138
+ }
139
+ return true;
140
+ }
141
+
142
+ let paused = false;
143
+ const queue = [];
144
+ class Consola {
145
+ options;
146
+ _lastLog;
147
+ _mockFn;
148
+ /**
149
+ * Creates an instance of Consola with specified options or defaults.
150
+ *
151
+ * @param {Partial<ConsolaOptions>} [options={}] - Configuration options for the Consola instance.
152
+ */
153
+ constructor(options = {}) {
154
+ const types = options.types || LogTypes;
155
+ this.options = defu(
156
+ {
157
+ ...options,
158
+ defaults: { ...options.defaults },
159
+ level: _normalizeLogLevel(options.level, types),
160
+ reporters: [...options.reporters || []]
161
+ },
162
+ {
163
+ types: LogTypes,
164
+ throttle: 1e3,
165
+ throttleMin: 5,
166
+ formatOptions: {
167
+ date: true,
168
+ colors: false,
169
+ compact: true
170
+ }
171
+ }
172
+ );
173
+ for (const type in types) {
174
+ const defaults = {
175
+ type,
176
+ ...this.options.defaults,
177
+ ...types[type]
178
+ };
179
+ this[type] = this._wrapLogFn(defaults);
180
+ this[type].raw = this._wrapLogFn(
181
+ defaults,
182
+ true
183
+ );
184
+ }
185
+ if (this.options.mockFn) {
186
+ this.mockTypes();
187
+ }
188
+ this._lastLog = {};
189
+ }
190
+ /**
191
+ * Gets the current log level of the Consola instance.
192
+ *
193
+ * @returns {number} The current log level.
194
+ */
195
+ get level() {
196
+ return this.options.level;
197
+ }
198
+ /**
199
+ * Sets the minimum log level that will be output by the instance.
200
+ *
201
+ * @param {number} level - The new log level to set.
202
+ */
203
+ set level(level) {
204
+ this.options.level = _normalizeLogLevel(
205
+ level,
206
+ this.options.types,
207
+ this.options.level
208
+ );
209
+ }
210
+ /**
211
+ * Displays a prompt to the user and returns the response.
212
+ * Throw an error if `prompt` is not supported by the current configuration.
213
+ *
214
+ * @template T
215
+ * @param {string} message - The message to display in the prompt.
216
+ * @param {T} [opts] - Optional options for the prompt. See {@link PromptOptions}.
217
+ * @returns {promise<T>} A promise that infer with the prompt options. See {@link PromptOptions}.
218
+ */
219
+ prompt(message, opts) {
220
+ if (!this.options.prompt) {
221
+ throw new Error("prompt is not supported!");
222
+ }
223
+ return this.options.prompt(message, opts);
224
+ }
225
+ /**
226
+ * Creates a new instance of Consola, inheriting options from the current instance, with possible overrides.
227
+ *
228
+ * @param {Partial<ConsolaOptions>} options - Optional overrides for the new instance. See {@link ConsolaOptions}.
229
+ * @returns {ConsolaInstance} A new Consola instance. See {@link ConsolaInstance}.
230
+ */
231
+ create(options) {
232
+ const instance = new Consola({
233
+ ...this.options,
234
+ ...options
235
+ });
236
+ if (this._mockFn) {
237
+ instance.mockTypes(this._mockFn);
238
+ }
239
+ return instance;
240
+ }
241
+ /**
242
+ * Creates a new Consola instance with the specified default log object properties.
243
+ *
244
+ * @param {InputLogObject} defaults - Default properties to include in any log from the new instance. See {@link InputLogObject}.
245
+ * @returns {ConsolaInstance} A new Consola instance. See {@link ConsolaInstance}.
246
+ */
247
+ withDefaults(defaults) {
248
+ return this.create({
249
+ ...this.options,
250
+ defaults: {
251
+ ...this.options.defaults,
252
+ ...defaults
253
+ }
254
+ });
255
+ }
256
+ /**
257
+ * Creates a new Consola instance with a specified tag, which will be included in every log.
258
+ *
259
+ * @param {string} tag - The tag to include in each log of the new instance.
260
+ * @returns {ConsolaInstance} A new Consola instance. See {@link ConsolaInstance}.
261
+ */
262
+ withTag(tag) {
263
+ return this.withDefaults({
264
+ tag: this.options.defaults.tag ? this.options.defaults.tag + ":" + tag : tag
265
+ });
266
+ }
267
+ /**
268
+ * Adds a custom reporter to the Consola instance.
269
+ * Reporters will be called for each log message, depending on their implementation and log level.
270
+ *
271
+ * @param {ConsolaReporter} reporter - The reporter to add. See {@link ConsolaReporter}.
272
+ * @returns {Consola} The current Consola instance.
273
+ */
274
+ addReporter(reporter) {
275
+ this.options.reporters.push(reporter);
276
+ return this;
277
+ }
278
+ /**
279
+ * Removes a custom reporter from the Consola instance.
280
+ * If no reporter is specified, all reporters will be removed.
281
+ *
282
+ * @param {ConsolaReporter} reporter - The reporter to remove. See {@link ConsolaReporter}.
283
+ * @returns {Consola} The current Consola instance.
284
+ */
285
+ removeReporter(reporter) {
286
+ if (reporter) {
287
+ const i = this.options.reporters.indexOf(reporter);
288
+ if (i !== -1) {
289
+ return this.options.reporters.splice(i, 1);
290
+ }
291
+ } else {
292
+ this.options.reporters.splice(0);
293
+ }
294
+ return this;
295
+ }
296
+ /**
297
+ * Replaces all reporters of the Consola instance with the specified array of reporters.
298
+ *
299
+ * @param {ConsolaReporter[]} reporters - The new reporters to set. See {@link ConsolaReporter}.
300
+ * @returns {Consola} The current Consola instance.
301
+ */
302
+ setReporters(reporters) {
303
+ this.options.reporters = Array.isArray(reporters) ? reporters : [reporters];
304
+ return this;
305
+ }
306
+ wrapAll() {
307
+ this.wrapConsole();
308
+ this.wrapStd();
309
+ }
310
+ restoreAll() {
311
+ this.restoreConsole();
312
+ this.restoreStd();
313
+ }
314
+ /**
315
+ * Overrides console methods with Consola logging methods for consistent logging.
316
+ */
317
+ wrapConsole() {
318
+ for (const type in this.options.types) {
319
+ if (!console["__" + type]) {
320
+ console["__" + type] = console[type];
321
+ }
322
+ console[type] = this[type].raw;
323
+ }
324
+ }
325
+ /**
326
+ * Restores the original console methods, removing Consola overrides.
327
+ */
328
+ restoreConsole() {
329
+ for (const type in this.options.types) {
330
+ if (console["__" + type]) {
331
+ console[type] = console["__" + type];
332
+ delete console["__" + type];
333
+ }
334
+ }
335
+ }
336
+ /**
337
+ * Overrides standard output and error streams to redirect them through Consola.
338
+ */
339
+ wrapStd() {
340
+ this._wrapStream(this.options.stdout, "log");
341
+ this._wrapStream(this.options.stderr, "log");
342
+ }
343
+ _wrapStream(stream, type) {
344
+ if (!stream) {
345
+ return;
346
+ }
347
+ if (!stream.__write) {
348
+ stream.__write = stream.write;
349
+ }
350
+ stream.write = (data) => {
351
+ this[type].raw(String(data).trim());
352
+ };
353
+ }
354
+ /**
355
+ * Restores the original standard output and error streams, removing the Consola redirection.
356
+ */
357
+ restoreStd() {
358
+ this._restoreStream(this.options.stdout);
359
+ this._restoreStream(this.options.stderr);
360
+ }
361
+ _restoreStream(stream) {
362
+ if (!stream) {
363
+ return;
364
+ }
365
+ if (stream.__write) {
366
+ stream.write = stream.__write;
367
+ delete stream.__write;
368
+ }
369
+ }
370
+ /**
371
+ * Pauses logging, queues incoming logs until resumed.
372
+ */
373
+ pauseLogs() {
374
+ paused = true;
375
+ }
376
+ /**
377
+ * Resumes logging, processing any queued logs.
378
+ */
379
+ resumeLogs() {
380
+ paused = false;
381
+ const _queue = queue.splice(0);
382
+ for (const item of _queue) {
383
+ item[0]._logFn(item[1], item[2]);
384
+ }
385
+ }
386
+ /**
387
+ * Replaces logging methods with mocks if a mock function is provided.
388
+ *
389
+ * @param {ConsolaOptions["mockFn"]} mockFn - The function to use for mocking logging methods. See {@link ConsolaOptions["mockFn"]}.
390
+ */
391
+ mockTypes(mockFn) {
392
+ const _mockFn = mockFn || this.options.mockFn;
393
+ this._mockFn = _mockFn;
394
+ if (typeof _mockFn !== "function") {
395
+ return;
396
+ }
397
+ for (const type in this.options.types) {
398
+ this[type] = _mockFn(type, this.options.types[type]) || this[type];
399
+ this[type].raw = this[type];
400
+ }
401
+ }
402
+ _wrapLogFn(defaults, isRaw) {
403
+ return (...args) => {
404
+ if (paused) {
405
+ queue.push([this, defaults, args, isRaw]);
406
+ return;
407
+ }
408
+ return this._logFn(defaults, args, isRaw);
409
+ };
410
+ }
411
+ _logFn(defaults, args, isRaw) {
412
+ if ((defaults.level || 0) > this.level) {
413
+ return false;
414
+ }
415
+ const logObj = {
416
+ date: /* @__PURE__ */ new Date(),
417
+ args: [],
418
+ ...defaults,
419
+ level: _normalizeLogLevel(defaults.level, this.options.types)
420
+ };
421
+ if (!isRaw && args.length === 1 && isLogObj(args[0])) {
422
+ Object.assign(logObj, args[0]);
423
+ } else {
424
+ logObj.args = [...args];
425
+ }
426
+ if (logObj.message) {
427
+ logObj.args.unshift(logObj.message);
428
+ delete logObj.message;
429
+ }
430
+ if (logObj.additional) {
431
+ if (!Array.isArray(logObj.additional)) {
432
+ logObj.additional = logObj.additional.split("\n");
433
+ }
434
+ logObj.args.push("\n" + logObj.additional.join("\n"));
435
+ delete logObj.additional;
436
+ }
437
+ logObj.type = typeof logObj.type === "string" ? logObj.type.toLowerCase() : "log";
438
+ logObj.tag = typeof logObj.tag === "string" ? logObj.tag : "";
439
+ const resolveLog = (newLog = false) => {
440
+ const repeated = (this._lastLog.count || 0) - this.options.throttleMin;
441
+ if (this._lastLog.object && repeated > 0) {
442
+ const args2 = [...this._lastLog.object.args];
443
+ if (repeated > 1) {
444
+ args2.push(`(repeated ${repeated} times)`);
445
+ }
446
+ this._log({ ...this._lastLog.object, args: args2 });
447
+ this._lastLog.count = 1;
448
+ }
449
+ if (newLog) {
450
+ this._lastLog.object = logObj;
451
+ this._log(logObj);
452
+ }
453
+ };
454
+ clearTimeout(this._lastLog.timeout);
455
+ const diffTime = this._lastLog.time && logObj.date ? logObj.date.getTime() - this._lastLog.time.getTime() : 0;
456
+ this._lastLog.time = logObj.date;
457
+ if (diffTime < this.options.throttle) {
458
+ try {
459
+ const serializedLog = JSON.stringify([
460
+ logObj.type,
461
+ logObj.tag,
462
+ logObj.args
463
+ ]);
464
+ const isSameLog = this._lastLog.serialized === serializedLog;
465
+ this._lastLog.serialized = serializedLog;
466
+ if (isSameLog) {
467
+ this._lastLog.count = (this._lastLog.count || 0) + 1;
468
+ if (this._lastLog.count > this.options.throttleMin) {
469
+ this._lastLog.timeout = setTimeout(
470
+ resolveLog,
471
+ this.options.throttle
472
+ );
473
+ return;
474
+ }
475
+ }
476
+ } catch {
477
+ }
478
+ }
479
+ resolveLog(true);
480
+ }
481
+ _log(logObj) {
482
+ for (const reporter of this.options.reporters) {
483
+ reporter.log(logObj, {
484
+ options: this.options
485
+ });
486
+ }
487
+ }
488
+ }
489
+ function _normalizeLogLevel(input, types = {}, defaultLevel = 3) {
490
+ if (input === void 0) {
491
+ return defaultLevel;
492
+ }
493
+ if (typeof input === "number") {
494
+ return input;
495
+ }
496
+ if (types[input] && types[input].level !== void 0) {
497
+ return types[input].level;
498
+ }
499
+ return defaultLevel;
500
+ }
501
+ Consola.prototype.add = Consola.prototype.addReporter;
502
+ Consola.prototype.remove = Consola.prototype.removeReporter;
503
+ Consola.prototype.clear = Consola.prototype.removeReporter;
504
+ Consola.prototype.withScope = Consola.prototype.withTag;
505
+ Consola.prototype.mock = Consola.prototype.mockTypes;
506
+ Consola.prototype.pause = Consola.prototype.pauseLogs;
507
+ Consola.prototype.resume = Consola.prototype.resumeLogs;
508
+ function createConsola(options = {}) {
509
+ return new Consola(options);
510
+ }
511
+
512
+ export { Consola, LogLevels, LogTypes, createConsola };