mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-08-09 12:46:13 +02:00
44 lines
1.7 KiB
Diff
44 lines
1.7 KiB
Diff
diff --git a/dist/commonjs/index.d.ts b/dist/commonjs/index.d.ts
|
|
index f3e2de9d87e1ce462517e49f35733bed8bdf85af..7a19917a209b84b30938957ea67d4ad60dd748c5 100644
|
|
--- a/dist/commonjs/index.d.ts
|
|
+++ b/dist/commonjs/index.d.ts
|
|
@@ -5,4 +5,5 @@ export type BraceExpansionOptions = {
|
|
maxLength?: number;
|
|
};
|
|
export declare function expand(str: string, options?: BraceExpansionOptions): string[];
|
|
+export default expand;
|
|
//# sourceMappingURL=index.d.ts.map
|
|
\ No newline at end of file
|
|
diff --git a/dist/commonjs/index.js b/dist/commonjs/index.js
|
|
index 869a6bee23807b9f01c18c99ab8e952b4b242f97..cd8fa65b1a1521aa0b27b3e661797763b8365138 100644
|
|
--- a/dist/commonjs/index.js
|
|
+++ b/dist/commonjs/index.js
|
|
@@ -286,4 +286,5 @@ function expand_(str, max, maxLength, isTop) {
|
|
}
|
|
return acc;
|
|
}
|
|
+module.exports = Object.assign(expand, exports);
|
|
//# sourceMappingURL=index.js.map
|
|
\ No newline at end of file
|
|
diff --git a/dist/esm/index.d.ts b/dist/esm/index.d.ts
|
|
index f3e2de9d87e1ce462517e49f35733bed8bdf85af..7a19917a209b84b30938957ea67d4ad60dd748c5 100644
|
|
--- a/dist/esm/index.d.ts
|
|
+++ b/dist/esm/index.d.ts
|
|
@@ -5,4 +5,5 @@ export type BraceExpansionOptions = {
|
|
maxLength?: number;
|
|
};
|
|
export declare function expand(str: string, options?: BraceExpansionOptions): string[];
|
|
+export default expand;
|
|
//# sourceMappingURL=index.d.ts.map
|
|
\ No newline at end of file
|
|
diff --git a/dist/esm/index.js b/dist/esm/index.js
|
|
index fd68f57029207ac1bcafe7fb1c14ad5305b3ffa4..f3ef09ac8ad02d3fde8150e7f64f40ac874a47e3 100644
|
|
--- a/dist/esm/index.js
|
|
+++ b/dist/esm/index.js
|
|
@@ -282,4 +282,5 @@ function expand_(str, max, maxLength, isTop) {
|
|
}
|
|
return acc;
|
|
}
|
|
+export default expand;
|
|
//# sourceMappingURL=index.js.map
|