@rolldown/browser 1.0.0-beta.49 → 1.0.0-beta.51
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/cli.mjs +12 -8
- package/dist/config.d.mts +3 -3
- package/dist/config.mjs +9 -5
- package/dist/constructors-DoUEJY6G.js +65 -0
- package/dist/experimental-index.browser.mjs +17 -11
- package/dist/experimental-index.d.mts +52 -15
- package/dist/experimental-index.mjs +21 -13
- package/dist/filter-index.d.mts +3 -3
- package/dist/filter-index.mjs +2 -1
- package/dist/index.browser.mjs +161 -2
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +36 -4
- package/dist/normalize-string-or-regex-BXFT9GiS.js +830 -0
- package/dist/parallel-plugin-worker.mjs +5 -4
- package/dist/parallel-plugin.d.mts +3 -3
- package/dist/parse-ast-index.d.mts +1 -1
- package/dist/parse-ast-index.mjs +1 -1
- package/dist/plugins-index.browser.mjs +2 -2
- package/dist/plugins-index.d.mts +3 -3
- package/dist/plugins-index.mjs +3 -2
- package/dist/rolldown-binding.wasi-browser.js +5 -2
- package/dist/rolldown-binding.wasi.cjs +5 -2
- package/dist/rolldown-binding.wasm32-wasi.wasm +0 -0
- package/dist/{src-CnMyHYgB.js → rolldown-build-C0UB1WZy.js} +32 -756
- package/dist/shared/{binding-B4uTNiw2.d.mts → binding-lSvYApx7.d.mts} +198 -89
- package/dist/shared/bindingify-input-options-CSdAtTcQ.mjs +1568 -0
- package/dist/shared/{composable-filters-CBpK2Fbc.mjs → composable-filters-DZ5ToxRJ.mjs} +1 -22
- package/dist/shared/constructors-DF6M1PTb.mjs +65 -0
- package/dist/shared/constructors-DgFF472b.d.mts +31 -0
- package/dist/shared/{define-config-BAQ9c-hh.d.mts → define-config-BKu-xa_0.d.mts} +10 -49
- package/dist/shared/define-config-DfeZGBEt.mjs +7 -0
- package/dist/shared/{load-config-DQI-2sfE.mjs → load-config-Beo_LOwd.mjs} +1 -1
- package/dist/shared/misc-5GYLGQ20.mjs +22 -0
- package/dist/shared/normalize-string-or-regex-DvECZN2V.mjs +629 -0
- package/dist/shared/{parse-ast-index-D9jH_38U.mjs → parse-ast-index-C_M-Y4oC.mjs} +3 -3
- package/dist/shared/{prompt-Ckjl2FdJ.mjs → prompt-pmGBC3ws.mjs} +1 -1
- package/dist/shared/rolldown-BhV7L6Kg.mjs +10 -0
- package/dist/shared/rolldown-build-DYR94CyF.mjs +2121 -0
- package/dist/shared/utils-BJWI2OzT.d.mts +62 -0
- package/dist/shared/watch-Cjxo-3u4.mjs +338 -0
- package/package.json +1 -1
- package/dist/constructors-EhfoQfqh.js +0 -68
- package/dist/normalize-string-or-regex-d47jXr3r.js +0 -231
- package/dist/shared/constructors-CaN9lKj2.d.mts +0 -32
- package/dist/shared/constructors-DcEzB0nc.mjs +0 -68
- package/dist/shared/normalize-string-or-regex-CbDij6KB.mjs +0 -46
- package/dist/shared/src-CZ_U2fML.mjs +0 -4597
- package/dist/shared/utils-CduIqa7h.d.mts +0 -18
|
@@ -1,24 +1,3 @@
|
|
|
1
|
-
//#region src/utils/misc.ts
|
|
2
|
-
function arraify(value) {
|
|
3
|
-
return Array.isArray(value) ? value : [value];
|
|
4
|
-
}
|
|
5
|
-
function isPromiseLike(value) {
|
|
6
|
-
return value && (typeof value === "object" || typeof value === "function") && typeof value.then === "function";
|
|
7
|
-
}
|
|
8
|
-
function unimplemented(info) {
|
|
9
|
-
if (info) throw new Error(`unimplemented: ${info}`);
|
|
10
|
-
throw new Error("unimplemented");
|
|
11
|
-
}
|
|
12
|
-
function unreachable(info) {
|
|
13
|
-
if (info) throw new Error(`unreachable: ${info}`);
|
|
14
|
-
throw new Error("unreachable");
|
|
15
|
-
}
|
|
16
|
-
function unsupported(info) {
|
|
17
|
-
throw new Error(`UNSUPPORTED: ${info}`);
|
|
18
|
-
}
|
|
19
|
-
function noop(..._args) {}
|
|
20
|
-
|
|
21
|
-
//#endregion
|
|
22
1
|
//#region ../pluginutils/dist/composable-filters.js
|
|
23
2
|
var And = class {
|
|
24
3
|
kind;
|
|
@@ -140,4 +119,4 @@ function queries(queryFilter) {
|
|
|
140
119
|
}
|
|
141
120
|
|
|
142
121
|
//#endregion
|
|
143
|
-
export { include as a, or as c,
|
|
122
|
+
export { include as a, or as c, id as i, queries as l, code as n, moduleType as o, exclude as r, not as s, and as t, query as u };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { a as makeBuiltinPluginCallable, n as BuiltinPlugin, t as normalizedStringOrRegex } from "./normalize-string-or-regex-DvECZN2V.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/builtin-plugin/constructors.ts
|
|
4
|
+
function viteModulePreloadPolyfillPlugin(config) {
|
|
5
|
+
return new BuiltinPlugin("builtin:vite-module-preload-polyfill", config);
|
|
6
|
+
}
|
|
7
|
+
function viteDynamicImportVarsPlugin(config) {
|
|
8
|
+
if (config) {
|
|
9
|
+
config.include = normalizedStringOrRegex(config.include);
|
|
10
|
+
config.exclude = normalizedStringOrRegex(config.exclude);
|
|
11
|
+
}
|
|
12
|
+
return new BuiltinPlugin("builtin:vite-dynamic-import-vars", config);
|
|
13
|
+
}
|
|
14
|
+
function viteImportGlobPlugin(config) {
|
|
15
|
+
return new BuiltinPlugin("builtin:vite-import-glob", config);
|
|
16
|
+
}
|
|
17
|
+
function viteReporterPlugin(config) {
|
|
18
|
+
return new BuiltinPlugin("builtin:vite-reporter", config);
|
|
19
|
+
}
|
|
20
|
+
function viteManifestPlugin(config) {
|
|
21
|
+
return new BuiltinPlugin("builtin:vite-manifest", config);
|
|
22
|
+
}
|
|
23
|
+
function viteWasmHelperPlugin(config) {
|
|
24
|
+
return new BuiltinPlugin("builtin:vite-wasm-helper", config);
|
|
25
|
+
}
|
|
26
|
+
function viteWasmFallbackPlugin() {
|
|
27
|
+
return makeBuiltinPluginCallable(new BuiltinPlugin("builtin:vite-wasm-fallback"));
|
|
28
|
+
}
|
|
29
|
+
function viteLoadFallbackPlugin() {
|
|
30
|
+
return new BuiltinPlugin("builtin:vite-load-fallback");
|
|
31
|
+
}
|
|
32
|
+
function viteJsonPlugin(config) {
|
|
33
|
+
return makeBuiltinPluginCallable(new BuiltinPlugin("builtin:vite-json", config));
|
|
34
|
+
}
|
|
35
|
+
function viteBuildImportAnalysisPlugin(config) {
|
|
36
|
+
return new BuiltinPlugin("builtin:vite-build-import-analysis", config);
|
|
37
|
+
}
|
|
38
|
+
function viteResolvePlugin(config) {
|
|
39
|
+
return makeBuiltinPluginCallable(new BuiltinPlugin("builtin:vite-resolve", config));
|
|
40
|
+
}
|
|
41
|
+
function isolatedDeclarationPlugin(config) {
|
|
42
|
+
return new BuiltinPlugin("builtin:isolated-declaration", config);
|
|
43
|
+
}
|
|
44
|
+
function viteWebWorkerPostPlugin() {
|
|
45
|
+
return new BuiltinPlugin("builtin:vite-web-worker-post");
|
|
46
|
+
}
|
|
47
|
+
function esmExternalRequirePlugin(config) {
|
|
48
|
+
return new BuiltinPlugin("builtin:esm-external-require", config);
|
|
49
|
+
}
|
|
50
|
+
function viteReactRefreshWrapperPlugin(config) {
|
|
51
|
+
if (config) {
|
|
52
|
+
config.include = normalizedStringOrRegex(config.include);
|
|
53
|
+
config.exclude = normalizedStringOrRegex(config.exclude);
|
|
54
|
+
}
|
|
55
|
+
return makeBuiltinPluginCallable(new BuiltinPlugin("builtin:vite-react-refresh-wrapper", config));
|
|
56
|
+
}
|
|
57
|
+
function viteCSSPostPlugin(config) {
|
|
58
|
+
return new BuiltinPlugin("builtin:vite-css-post", config);
|
|
59
|
+
}
|
|
60
|
+
function viteHtmlInlineProxyPlugin(config) {
|
|
61
|
+
return new BuiltinPlugin("builtin:vite-html-inline-proxy", config);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
//#endregion
|
|
65
|
+
export { viteWebWorkerPostPlugin as _, viteDynamicImportVarsPlugin as a, viteJsonPlugin as c, viteModulePreloadPolyfillPlugin as d, viteReactRefreshWrapperPlugin as f, viteWasmHelperPlugin as g, viteWasmFallbackPlugin as h, viteCSSPostPlugin as i, viteLoadFallbackPlugin as l, viteResolvePlugin as m, isolatedDeclarationPlugin as n, viteHtmlInlineProxyPlugin as o, viteReporterPlugin as p, viteBuildImportAnalysisPlugin as r, viteImportGlobPlugin as s, esmExternalRequirePlugin as t, viteManifestPlugin as u };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { t as BuiltinPlugin, u as StringOrRegExp } from "./utils-BJWI2OzT.mjs";
|
|
2
|
+
import { C as BindingViteReactRefreshWrapperPluginConfig, D as BindingViteWasmHelperPluginConfig, S as BindingViteModulePreloadPolyfillPluginConfig, T as BindingViteResolvePluginConfig, _ as BindingViteHtmlInlineProxyPluginConfig, a as BindingIsolatedDeclarationPluginConfig, b as BindingViteJsonPluginConfig, g as BindingViteDynamicImportVarsPluginConfig, h as BindingViteCssPostPluginConfig, p as BindingViteBuildImportAnalysisPluginConfig, r as BindingEsmExternalRequirePluginConfig, w as BindingViteReporterPluginConfig, x as BindingViteManifestPluginConfig, y as BindingViteImportGlobPluginConfig } from "./binding-lSvYApx7.mjs";
|
|
3
|
+
|
|
4
|
+
//#region src/builtin-plugin/constructors.d.ts
|
|
5
|
+
declare function viteModulePreloadPolyfillPlugin(config?: BindingViteModulePreloadPolyfillPluginConfig): BuiltinPlugin;
|
|
6
|
+
type DynamicImportVarsPluginConfig = Omit<BindingViteDynamicImportVarsPluginConfig, "include" | "exclude"> & {
|
|
7
|
+
include?: StringOrRegExp | StringOrRegExp[];
|
|
8
|
+
exclude?: StringOrRegExp | StringOrRegExp[];
|
|
9
|
+
};
|
|
10
|
+
declare function viteDynamicImportVarsPlugin(config?: DynamicImportVarsPluginConfig): BuiltinPlugin;
|
|
11
|
+
declare function viteImportGlobPlugin(config?: BindingViteImportGlobPluginConfig): BuiltinPlugin;
|
|
12
|
+
declare function viteReporterPlugin(config?: BindingViteReporterPluginConfig): BuiltinPlugin;
|
|
13
|
+
declare function viteManifestPlugin(config?: BindingViteManifestPluginConfig): BuiltinPlugin;
|
|
14
|
+
declare function viteWasmHelperPlugin(config?: BindingViteWasmHelperPluginConfig): BuiltinPlugin;
|
|
15
|
+
declare function viteWasmFallbackPlugin(): BuiltinPlugin;
|
|
16
|
+
declare function viteLoadFallbackPlugin(): BuiltinPlugin;
|
|
17
|
+
declare function viteJsonPlugin(config?: BindingViteJsonPluginConfig): BuiltinPlugin;
|
|
18
|
+
declare function viteBuildImportAnalysisPlugin(config: BindingViteBuildImportAnalysisPluginConfig): BuiltinPlugin;
|
|
19
|
+
declare function viteResolvePlugin(config: BindingViteResolvePluginConfig): BuiltinPlugin;
|
|
20
|
+
declare function isolatedDeclarationPlugin(config?: BindingIsolatedDeclarationPluginConfig): BuiltinPlugin;
|
|
21
|
+
declare function viteWebWorkerPostPlugin(): BuiltinPlugin;
|
|
22
|
+
declare function esmExternalRequirePlugin(config?: BindingEsmExternalRequirePluginConfig): BuiltinPlugin;
|
|
23
|
+
type ViteReactRefreshWrapperPluginConfig = Omit<BindingViteReactRefreshWrapperPluginConfig, "include" | "exclude"> & {
|
|
24
|
+
include?: StringOrRegExp | StringOrRegExp[];
|
|
25
|
+
exclude?: StringOrRegExp | StringOrRegExp[];
|
|
26
|
+
};
|
|
27
|
+
declare function viteReactRefreshWrapperPlugin(config: ViteReactRefreshWrapperPluginConfig): BuiltinPlugin;
|
|
28
|
+
declare function viteCSSPostPlugin(config?: BindingViteCssPostPluginConfig): BuiltinPlugin;
|
|
29
|
+
declare function viteHtmlInlineProxyPlugin(config: BindingViteHtmlInlineProxyPluginConfig): BuiltinPlugin;
|
|
30
|
+
//#endregion
|
|
31
|
+
export { viteWebWorkerPostPlugin as _, viteDynamicImportVarsPlugin as a, viteJsonPlugin as c, viteModulePreloadPolyfillPlugin as d, viteReactRefreshWrapperPlugin as f, viteWasmHelperPlugin as g, viteWasmFallbackPlugin as h, viteCSSPostPlugin as i, viteLoadFallbackPlugin as l, viteResolvePlugin as m, isolatedDeclarationPlugin as n, viteHtmlInlineProxyPlugin as o, viteReporterPlugin as p, viteBuildImportAnalysisPlugin as r, viteImportGlobPlugin as s, esmExternalRequirePlugin as t, viteManifestPlugin as u };
|
|
@@ -1,44 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { a as MakeAsync, c as NullValue, d as LogLevel, f as LogLevelOption, g as RollupLogWithString, h as RollupLog, l as PartialNull, m as RollupError, n as LoggingFunction, o as MaybeArray, p as LogOrStringHandler, r as LoggingFunctionWithPosition, s as MaybePromise, t as BuiltinPlugin, u as StringOrRegExp } from "./utils-BJWI2OzT.mjs";
|
|
2
|
+
import { A as ExternalMemoryStatus, H as TransformOptions$1, N as JsxOptions, O as BindingWatcherBundler, P as MinifyOptions$1, R as ParserOptions, c as BindingRenderedChunk, i as BindingHookResolveIdExtraArgs, k as BindingWatcherEvent, o as BindingMagicString, u as BindingTransformHookExtraArgs, z as PreRenderedChunk } from "./binding-lSvYApx7.mjs";
|
|
3
3
|
import { Program } from "@oxc-project/types";
|
|
4
4
|
import { TopLevelFilterExpression } from "@rolldown/pluginutils";
|
|
5
5
|
|
|
6
|
-
//#region src/log/logging.d.ts
|
|
7
|
-
type LogLevel = "info" | "debug" | "warn";
|
|
8
|
-
type LogLevelOption = LogLevel | "silent";
|
|
9
|
-
type LogLevelWithError = LogLevel | "error";
|
|
10
|
-
interface RollupLog {
|
|
11
|
-
binding?: string;
|
|
12
|
-
cause?: unknown;
|
|
13
|
-
code?: string;
|
|
14
|
-
exporter?: string;
|
|
15
|
-
frame?: string;
|
|
16
|
-
hook?: string;
|
|
17
|
-
id?: string;
|
|
18
|
-
ids?: string[];
|
|
19
|
-
loc?: {
|
|
20
|
-
column: number;
|
|
21
|
-
file?: string;
|
|
22
|
-
line: number;
|
|
23
|
-
};
|
|
24
|
-
message: string;
|
|
25
|
-
meta?: any;
|
|
26
|
-
names?: string[];
|
|
27
|
-
plugin?: string;
|
|
28
|
-
pluginCode?: unknown;
|
|
29
|
-
pos?: number;
|
|
30
|
-
reexporter?: string;
|
|
31
|
-
stack?: string;
|
|
32
|
-
url?: string;
|
|
33
|
-
}
|
|
34
|
-
type RollupLogWithString = RollupLog | string;
|
|
35
|
-
interface RollupError extends RollupLog {
|
|
36
|
-
name?: string;
|
|
37
|
-
stack?: string;
|
|
38
|
-
watchFiles?: string[];
|
|
39
|
-
}
|
|
40
|
-
type LogOrStringHandler = (level: LogLevelWithError, log: RollupLogWithString) => void;
|
|
41
|
-
//#endregion
|
|
42
6
|
//#region src/types/misc.d.ts
|
|
43
7
|
type SourcemapPathTransformOption = (relativeSourcePath: string, sourcemapPath: string) => string;
|
|
44
8
|
type SourcemapIgnoreListOption = (relativeSourcePath: string, sourcemapPath: string) => boolean;
|
|
@@ -700,14 +664,6 @@ type RolldownWatcher = WatcherEmitter;
|
|
|
700
664
|
//#region src/api/watch/index.d.ts
|
|
701
665
|
declare const watch: (input: WatchOptions | WatchOptions[]) => RolldownWatcher;
|
|
702
666
|
//#endregion
|
|
703
|
-
//#region src/log/log-handler.d.ts
|
|
704
|
-
type LoggingFunction = (log: RollupLog | string | (() => RollupLog | string)) => void;
|
|
705
|
-
type LoggingFunctionWithPosition = (log: RollupLog | string | (() => RollupLog | string), pos?: number | {
|
|
706
|
-
column: number;
|
|
707
|
-
line: number;
|
|
708
|
-
}) => void;
|
|
709
|
-
type WarningHandlerWithDefault = (warning: RollupLog, defaultHandler: LoggingFunction) => void;
|
|
710
|
-
//#endregion
|
|
711
667
|
//#region src/options/normalized-input-options.d.ts
|
|
712
668
|
interface NormalizedInputOptions {
|
|
713
669
|
input: string[] | Record<string, string>;
|
|
@@ -981,7 +937,7 @@ interface ExistingRawSourceMap {
|
|
|
981
937
|
}
|
|
982
938
|
type SourceMapInput = ExistingRawSourceMap | string | null;
|
|
983
939
|
//#endregion
|
|
984
|
-
//#region src/
|
|
940
|
+
//#region src/version.d.ts
|
|
985
941
|
declare const VERSION: string;
|
|
986
942
|
//#endregion
|
|
987
943
|
//#region src/constants/plugin.d.ts
|
|
@@ -1211,6 +1167,11 @@ interface ChecksOptions {
|
|
|
1211
1167
|
* @default true
|
|
1212
1168
|
*/
|
|
1213
1169
|
preferBuiltinFeature?: boolean;
|
|
1170
|
+
/**
|
|
1171
|
+
* Whether to emit warning when detecting could not clean directory
|
|
1172
|
+
* @default true
|
|
1173
|
+
*/
|
|
1174
|
+
couldNotCleanDirectory?: boolean;
|
|
1214
1175
|
}
|
|
1215
1176
|
//#endregion
|
|
1216
1177
|
//#region src/options/transform-options.d.ts
|
|
@@ -1403,7 +1364,7 @@ interface InputOptions {
|
|
|
1403
1364
|
/**
|
|
1404
1365
|
* > [!WARNING]
|
|
1405
1366
|
* > `resolve.alias` will not call `resolveId` hooks of other plugin.
|
|
1406
|
-
* > If you want to call `resolveId` hooks of other plugin, use `
|
|
1367
|
+
* > If you want to call `resolveId` hooks of other plugin, use `viteAliasPlugin` from `rolldown/experimental` instead.
|
|
1407
1368
|
* > You could find more discussion in [this issue](https://github.com/rolldown/rolldown/issues/3615)
|
|
1408
1369
|
*/
|
|
1409
1370
|
alias?: Record<string, string[] | string | false>;
|
|
@@ -1644,4 +1605,4 @@ declare function defineConfig(config: RolldownOptions[]): RolldownOptions[];
|
|
|
1644
1605
|
declare function defineConfig(config: RolldownOptionsFunction): RolldownOptionsFunction;
|
|
1645
1606
|
declare function defineConfig(config: ConfigExport): ConfigExport;
|
|
1646
1607
|
//#endregion
|
|
1647
|
-
export { NormalizedOutputOptions as $, VERSION as A,
|
|
1608
|
+
export { NormalizedOutputOptions as $, VERSION as A, PluginContext as B, ResolveIdResult as C, RolldownOutput as Ct, SourceDescription as D, SourcemapIgnoreListOption as Dt, RolldownPluginOption as E, ModuleInfo as Et, TreeshakingOptions as F, GeneralHookFilter as G, defineParallelPlugin as H, TransformPluginContext as I, BufferEncoding as J, HookFilter as K, EmittedAsset as L, SourceMapInput as M, RolldownOptionsFunction as N, TransformResult as O, OutputBundle as P, InternalModuleFormat as Q, EmittedFile as R, ResolveIdExtraOptions as S, RenderedModule as St, RolldownPlugin as T, freeExternalMemory as Tt, MinimalPluginContext as U, DefineParallelPluginResult as V, PluginContextMeta as W, RolldownFileStats as X, RolldownDirectoryEntry as Y, RolldownFsModule as Z, ModuleType as _, OutputOptions as _t, InputOption as a, rolldown as at, PartialResolvedId as b, OutputChunk as bt, OptimizationOptions as c, build as ct, CustomPluginOptions as d, ChunkingContext as dt, NormalizedInputOptions as et, FunctionPluginHooks as f, GeneratedCodeOptions as ft, ModuleOptions as g, ModuleFormat as gt, LoadResult as h, MinifyOptions as ht, ExternalOption as i, WatchOptions as it, ExistingRawSourceMap as j, withFilter as k, WatcherOptions as l, AddonFunction as lt, ImportKind as m, GlobalsFunction as mt, ConfigExport as n, RolldownWatcher as nt, InputOptions as o, RolldownBuild as ot, HookFilterExtension as p, GeneratedCodePreset as pt, ModuleTypeFilter as q, RolldownOptions as r, RolldownWatcherEvent as rt, ModuleTypes as s, BuildOptions as st, defineConfig as t, watch as tt, AsyncPluginHooks as u, ChunkFileNamesFunction as ut, ObjectHook as v, PreRenderedAsset as vt, ResolvedId as w, SourceMap as wt, Plugin as x, RenderedChunk as xt, ParallelPluginHooks as y, OutputAsset as yt, GetModuleInfo as z };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
//#region src/utils/misc.ts
|
|
2
|
+
function arraify(value) {
|
|
3
|
+
return Array.isArray(value) ? value : [value];
|
|
4
|
+
}
|
|
5
|
+
function isPromiseLike(value) {
|
|
6
|
+
return value && (typeof value === "object" || typeof value === "function") && typeof value.then === "function";
|
|
7
|
+
}
|
|
8
|
+
function unimplemented(info) {
|
|
9
|
+
if (info) throw new Error(`unimplemented: ${info}`);
|
|
10
|
+
throw new Error("unimplemented");
|
|
11
|
+
}
|
|
12
|
+
function unreachable(info) {
|
|
13
|
+
if (info) throw new Error(`unreachable: ${info}`);
|
|
14
|
+
throw new Error("unreachable");
|
|
15
|
+
}
|
|
16
|
+
function unsupported(info) {
|
|
17
|
+
throw new Error(`UNSUPPORTED: ${info}`);
|
|
18
|
+
}
|
|
19
|
+
function noop(..._args) {}
|
|
20
|
+
|
|
21
|
+
//#endregion
|
|
22
|
+
export { unreachable as a, unimplemented as i, isPromiseLike as n, unsupported as o, noop as r, arraify as t };
|