We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b835d commit 9da6e9aCopy full SHA for 9da6e9a
packages/duckdb-wasm/src/platform.ts
@@ -19,6 +19,11 @@ const userAgent = () => (isNode() ? 'node' : navigator.userAgent);
19
export const isFirefox = () => userAgent().includes('Firefox');
20
export const isSafari = () => /^((?!chrome|android).)*safari/i.test(userAgent());
21
22
+/** Bundles have different characteristics:
23
+ * - MVP: minimum viable product (uses features from first stable version of WebAssembly standard)
24
+ * - EH: exception handling
25
+ * - COI: cross origin isolation
26
+ */
27
export interface DuckDBBundles {
28
mvp: {
29
mainModule: string;
0 commit comments